* fix: 🐛 Fix ghost shadow on thumb Updated react-dnd package for the lates. Refactored thumbnail component Closes: 1087 * feat: 🎸 Code review Set flex instead of float. Add cypress tag to thumb container * feat: 🎸 Code review. Revised style when no description
25 lines
771 B
JavaScript
25 lines
771 B
JavaScript
describe('ViewerRouting', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/');
|
|
cy.contains('Study List');
|
|
cy.get(
|
|
'[data-cy="study-list-results"]> :nth-child(1) > .patientId'
|
|
).click();
|
|
});
|
|
|
|
// it('thumbnails list has more than 2 items', () => {
|
|
// cy.get('.scrollable-study-thumbnails div.thumbnail-container')
|
|
// .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');
|
|
// });
|
|
});
|