12 lines
248 B
JavaScript
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);
|
|
});
|
|
});
|