svgedit/cypress/integration/ui/key-commands.js

15 lines
348 B
JavaScript
Raw Normal View History

2020-01-21 03:50:06 +00:00
import {
visitAndApproveStorage
} from '../../support/ui-test-helper.js';
// See https://github.com/SVG-Edit/svgedit/issues/364
describe('Key commands', function () {
beforeEach(() => {
visitAndApproveStorage();
});
2021-05-09 17:29:45 +00:00
it.skip('cmd-A on empty canvas should not cause an error', function () {
2020-01-21 03:50:06 +00:00
cy.get('body').type('{cmd}a');
});
});