svgedit/cypress/integration/ui/tool-selection.js

18 lines
428 B
JavaScript
Raw Normal View History

import {
visitAndApproveStorage
} from '../../support/ui-test-helper.js';
describe('UI - Tool selection', function () {
beforeEach(() => {
visitAndApproveStorage();
});
it('should set rectangle selection by click', function () {
2021-05-09 17:29:45 +00:00
cy.get('#tools_rect')
.should('not.have.attr', 'pressed');
cy.get('#tools_rect')
2021-05-12 23:00:09 +00:00
.trigger('click', { force: true })
2021-05-09 17:29:45 +00:00
.should('have.attr', 'pressed');
});
});