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