mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
18 lines
573 B
JavaScript
18 lines
573 B
JavaScript
|
describe('CurvedLine Suite', () => {
|
||
|
// CurvedLine tests ...
|
||
|
it('CurvedLine Width', () => {
|
||
|
cy.visit('/iframe.html?args=&id=shapes-curvedline--width&viewMode=story');
|
||
|
cy.matchImageSnapshot('curvedline-width');
|
||
|
});
|
||
|
|
||
|
it('CurvedLine Stroke', () => {
|
||
|
cy.visit('/iframe.html?args=&id=shapes-curvedline--stroke&viewMode=story');
|
||
|
cy.matchImageSnapshot('curvedline-stroke');
|
||
|
});
|
||
|
|
||
|
it('CurvedLine Middle Curved', () => {
|
||
|
cy.visit('/iframe.html?args=&id=shapes-curvedline--fill&viewMode=story');
|
||
|
cy.matchImageSnapshot('curvedline-fill');
|
||
|
});
|
||
|
});
|