mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
24 lines
618 B
TypeScript
24 lines
618 B
TypeScript
/// <reference types="cypress" />
|
|
describe('Topic Icon Suite', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/editor.html');
|
|
cy.waitEditorLoaded();
|
|
});
|
|
|
|
it('Open panel', () => {
|
|
cy.onClickToolbarButton('Add Icon');
|
|
// Icon images must be loaded. No better solution than wait.
|
|
// eslint-disable-next-line cypress/no-unnecessary-waiting
|
|
cy.wait(5000);
|
|
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');
|
|
});
|
|
});
|