* TEST E2E: Drag and drop thumbnail into viewport * TEST E2E: Drag and drop thumbnail into viewport * fix: add pollyfill to script-tag template * Add wait's to command * Try to store artifacts * ci: updated artifact location * Changing Patient to MisterMR * Refactors based on PR comments * Adding new sub-folders to separate the testing scripts according to context/features * Adding test cases for Side Panels Measurements and Series * Removing duplicated file OHIFStudyViewer.spec.js
23 lines
748 B
JavaScript
23 lines
748 B
JavaScript
describe('ViewerRouting', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/');
|
|
cy.contains('Study List');
|
|
cy.get('#studyListData > :nth-child(1) > .patientId').click();
|
|
});
|
|
|
|
// it('thumbnails list has more than 2 items', () => {
|
|
// cy.get('.scrollable-study-thumbnails div.ThumbnailEntryContainer')
|
|
// .its('length')
|
|
// .should('be.gte', 2);
|
|
// });
|
|
|
|
// it('loads route with at least 2 thumbnails', () => {
|
|
// cy.get(
|
|
// ':nth-child(1) > .ThumbnailEntry > .p-x-1 > .ImageThumbnail > .image-thumbnail-canvas > canvas'
|
|
// ).should('be.visible');
|
|
// cy.get(
|
|
// ':nth-child(2) > .ThumbnailEntry > .p-x-1 > .ImageThumbnail > .image-thumbnail-canvas > canvas'
|
|
// ).should('be.visible');
|
|
// });
|
|
});
|