ohif-viewer/platform/viewer/cypress/integration/common/OHIFStandaloneViewer.spec.js
2019-12-24 01:17:02 -03:00

12 lines
248 B
JavaScript

describe('OHIFStandaloneViewer', () => {
beforeEach(() => {
cy.openStudyList();
});
it('loads route with at least 2 rows', () => {
cy.get('[data-cy="study-list-results"] tr')
.its('length')
.should('be.gt', 2);
});
});