2022-01-24 21:22:39 +01:00
|
|
|
context('Playground', () => {
|
|
|
|
it('viewmode page should match its snapshot', () => {
|
2022-07-13 03:58:11 +02:00
|
|
|
[
|
|
|
|
'welcome',
|
|
|
|
'sample1',
|
|
|
|
'sample2',
|
|
|
|
'sample3',
|
|
|
|
'sample4',
|
|
|
|
'sample5',
|
|
|
|
'sample6',
|
|
|
|
'complex',
|
|
|
|
'img-support',
|
|
|
|
'icon-sample',
|
|
|
|
].forEach((mapId) => {
|
2022-01-24 21:22:39 +01:00
|
|
|
cy.visit(`/viewmode.html?id=${mapId}`);
|
|
|
|
cy.get('#mindplot.ready').should('exist');
|
|
|
|
cy.matchImageSnapshot(`viewmode-${mapId}`);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it('the playground container.html page should match its snapshot', () => {
|
|
|
|
cy.visit('/container.html');
|
2022-07-13 03:58:11 +02:00
|
|
|
cy.getIframeBody().find('#mindplot.ready').should('exist');
|
2022-01-24 21:22:39 +01:00
|
|
|
cy.matchImageSnapshot('container');
|
|
|
|
});
|
|
|
|
it('the playground editor.html page should match its snapshot', () => {
|
|
|
|
cy.visit('/editor.html');
|
|
|
|
cy.get('#mindplot.ready').should('exist');
|
|
|
|
// TODO: why is the editor appearing twice in the snapshot?
|
|
|
|
cy.matchImageSnapshot('editor');
|
|
|
|
});
|
|
|
|
});
|