20 lines
560 B
JavaScript
20 lines
560 B
JavaScript
import {
|
|
visitAndApproveStorage
|
|
} from '../../../support/ui-test-helper.js';
|
|
|
|
// See https://github.com/SVG-Edit/svgedit/issues/364
|
|
describe('Issue 364; IE errorwith rectangle selection by click', function () {
|
|
beforeEach(() => {
|
|
visitAndApproveStorage();
|
|
});
|
|
|
|
it('should set rectangle selection after click', function () {
|
|
cy.get('#tools_rect_show')
|
|
.trigger('mousedown', {force: true})
|
|
.trigger('mouseup', {force: true})
|
|
.should((button) => {
|
|
expect(button).to.have.class('tool_button_current');
|
|
});
|
|
});
|
|
});
|