mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 09:53:24 +01:00
32 lines
660 B
TypeScript
32 lines
660 B
TypeScript
context('Render all sample maps', () => {
|
|
[
|
|
'complex',
|
|
'emoji',
|
|
'emptyNodes',
|
|
'error-on-load',
|
|
'huge',
|
|
'huge2',
|
|
'icon-sample',
|
|
'img-support',
|
|
'order',
|
|
//'rel-error',
|
|
'sample1',
|
|
'sample2',
|
|
'sample3',
|
|
'sample4',
|
|
'sample5',
|
|
'sample6',
|
|
'sample8',
|
|
'welcome',
|
|
].forEach((mapId) => {
|
|
it(`Render map => ${mapId}`, () => {
|
|
cy.visit(`/viewmode.html?id=${mapId}`);
|
|
cy.reload();
|
|
|
|
cy.get('svg > path').should('be.visible');
|
|
cy.get('[aria-label="vortex-loading"]', { timeout: 120000 }).should('not.exist');
|
|
cy.matchImageSnapshot(`map-${mapId}`);
|
|
});
|
|
});
|
|
});
|