mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 09:53:24 +01:00
79 lines
2.3 KiB
TypeScript
79 lines
2.3 KiB
TypeScript
/// <reference types="cypress" />
|
|
|
|
describe('Relationship Topics', () => {
|
|
beforeEach(() => {
|
|
// Remove storage for autosave ...
|
|
cy.visit('/editor.html');
|
|
cy.waitEditorLoaded();
|
|
});
|
|
|
|
it('Add Relationship', () => {
|
|
// Create new relationship ...
|
|
cy.focusTopicByText('Features');
|
|
cy.onClickToolbarButton('Add Relationship');
|
|
|
|
cy.focusTopicByText('Try it Now!');
|
|
|
|
cy.get('[test-id="11-15-relationship"]').as('rel');
|
|
cy.get('@rel').click({ force: true });
|
|
cy.get('@rel').should('exist');
|
|
|
|
cy.matchImageSnapshot('addRelationship');
|
|
|
|
// Undo relationship ...
|
|
cy.get('[aria-label^="Undo ').eq(1).click();
|
|
cy.get('@rel').should('not.exist');
|
|
});
|
|
|
|
it('Delete Relationship', () => {
|
|
// Add new relationship ...
|
|
cy.focusTopicByText('Features');
|
|
cy.onClickToolbarButton('Add Relationship');
|
|
cy.focusTopicByText('Try it Now!');
|
|
|
|
// Delete it ...
|
|
cy.get('[test-id="11-15-relationship"]').as('rel');
|
|
cy.get('@rel').should('exist');
|
|
cy.get('@rel').click({ force: true });
|
|
|
|
cy.get('body').type('{backspace}');
|
|
|
|
cy.get('@rel').should('not.exist');
|
|
cy.matchImageSnapshot('delete relationship');
|
|
|
|
// Undo relationship ...
|
|
cy.triggerUndo();
|
|
cy.get('@rel').should('exist');
|
|
});
|
|
|
|
it('Change Control Point', () => {
|
|
// Create new relationship ...
|
|
cy.focusTopicByText('Features');
|
|
cy.onClickToolbarButton('Add Relationship');
|
|
cy.focusTopicByText('Try it Now!');
|
|
|
|
// Select relationship ...
|
|
cy.get('[test-id="11-15-relationship"]').as('rel');
|
|
cy.get('@rel').should('exist');
|
|
cy.get('@rel').click({ force: true });
|
|
|
|
// Move control point start ...
|
|
cy.get('[test-id="relctl:0:11-15"]').first().trigger('mousedown');
|
|
cy.get('body').trigger('mousemove', { clientX: 350, clientY: 380 });
|
|
cy.get('body').trigger('mouseup');
|
|
cy.matchImageSnapshot('move ctl pont 0');
|
|
|
|
// Move control point end ...
|
|
cy.get('[test-id="relctl:1:11-15"]').first().trigger('mousedown');
|
|
cy.get('body').trigger('mousemove', { clientX: 350, clientY: 100 });
|
|
cy.get('body').trigger('mouseup');
|
|
cy.matchImageSnapshot('move ctl pont 1');
|
|
|
|
// Test undo and redo ...
|
|
cy.triggerUndo();
|
|
cy.triggerUndo();
|
|
cy.get('@rel').should('exist');
|
|
cy.matchImageSnapshot('rel ctl undo');
|
|
});
|
|
});
|