* Adding Percy Snapshot on VTK, PDF and Microscopy tests * Small improvement to always click on first search result * Wait for search result * Added timouts all over the code to avoid intermitted failures in CI * Increasing Default Timeout and other configs * Cleaning up the code * try force enabling gpu * Try custom executor with newer version of chrome * Fix based on review comments * Increased minimum thumbnails expected on VTK test * Fix config validation * Make sure we're using the chrome browser
27 lines
617 B
JavaScript
27 lines
617 B
JavaScript
describe('OHIF PDF Extension', () => {
|
|
before(() => {
|
|
cy.openStudy('Dummy');
|
|
cy.expectMinimumThumbnails(6);
|
|
});
|
|
|
|
it('checks if series thumbnails are being displayed', () => {
|
|
cy.get('[data-cy="thumbnail-list"]')
|
|
.contains('DOC')
|
|
.its('length')
|
|
.should('to.be.at.least', 1);
|
|
});
|
|
|
|
it('drags and drop a PDF thumbnail into viewport', () => {
|
|
cy.get('[data-cy="thumbnail-list"]')
|
|
.contains('DOC')
|
|
.drag('.viewport-drop-target');
|
|
|
|
cy.get('.DicomPDFViewport')
|
|
.its('length')
|
|
.should('be.eq', 1);
|
|
|
|
cy.screenshot();
|
|
cy.percySnapshot();
|
|
});
|
|
});
|