- Testing: Add key commands test

master
Brett Zamir 2020-01-21 11:50:06 +08:00
parent 2235f81ee7
commit fd77dc2b30
1 changed files with 14 additions and 0 deletions

View File

@ -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');
});
});