mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 09:53:24 +01:00
21 lines
471 B
TypeScript
21 lines
471 B
TypeScript
/// <reference types="cypress" />
|
|
describe('Topic Icon Suite', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/editor.html');
|
|
cy.waitEditorLoaded();
|
|
});
|
|
|
|
it('Open panel', () => {
|
|
cy.onClickToolbarButton('Add Icon');
|
|
cy.matchImageSnapshot('icons-pannel');
|
|
});
|
|
|
|
it('Add new icon', () => {
|
|
cy.focusTopicById(3);
|
|
cy.onClickToolbarButton('Add Icon');
|
|
|
|
cy.get('[aria-label="grinning"]').click();
|
|
cy.matchImageSnapshot('add-new-icon');
|
|
});
|
|
});
|