wisemapping-frontend/packages/editor/cypress/e2e/renderAll.cy.ts

33 lines
684 B
TypeScript
Raw Normal View History

2022-12-01 07:12:40 +01:00
context('Render all sample maps', () => {
[
'complex',
'emoji',
'emptyNodes',
'error-on-load',
'huge',
'huge2',
'icon-sample',
'img-support',
'order',
2022-12-16 04:32:22 +01:00
//'rel-error',
2022-12-01 07:12:40 +01:00
'sample1',
'sample2',
'sample3',
'sample4',
'sample5',
'sample6',
2023-01-02 04:54:16 +01:00
'connection-style',
2022-12-01 07:12:40 +01:00
'sample8',
'welcome',
].forEach((mapId) => {
it(`Render map => ${mapId}`, () => {
cy.visit(`/viewmode.html?id=${mapId}`);
cy.reload();
cy.get('svg > path').should('be.visible');
2022-12-16 04:32:22 +01:00
cy.get('[aria-label="vortex-loading"]', { timeout: 120000 }).should('not.exist');
2022-12-01 07:12:40 +01:00
cy.matchImageSnapshot(`map-${mapId}`);
});
});
});