Files
svgedit/cypress/integration/ui/key-commands.js
JFH a90fe20d32 Lint (#95)
* stricter linter

* Update .eslintrc.js

* Update control-points.js
2021-05-01 15:26:36 +02:00

15 lines
348 B
JavaScript

import {
visitAndApproveStorage
} from '../../support/ui-test-helper.js';
// See https://github.com/SVG-Edit/svgedit/issues/364
describe('Key commands', function () {
beforeEach(() => {
visitAndApproveStorage();
});
it.skip('cmd-A on empty canvas should not cause an error', function () {
cy.get('body').type('{cmd}a');
});
});