- Testing: Add key commands test
parent
2235f81ee7
commit
fd77dc2b30
|
@ -0,0 +1,14 @@
|
||||||
|
import {
|
||||||
|
visitAndApproveStorage
|
||||||
|
} from '../../support/ui-test-helper.js';
|
||||||
|
|
||||||
|
// See https://github.com/SVG-Edit/svgedit/issues/364
|
||||||
|
describe('Key commands', function () {
|
||||||
|
beforeEach(() => {
|
||||||
|
visitAndApproveStorage();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('ctrl-A causes error', function () {
|
||||||
|
cy.get('body').type('{cmd}a');
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in New Issue