* fix: 🐛 Fix RT Panel hide/show * Prevent infinite loop by persisting load errors on displaySet. * fix: 🐛 Fix infinite error messages * Fix unit tests. * comment out reamining MRSTUDY line
23 lines
680 B
JavaScript
23 lines
680 B
JavaScript
//We excluded the tests for '**/studies/**' because the bulk/all of our other study/viewer tests use this route
|
|
|
|
describe('OHIF Routes', function() {
|
|
beforeEach(function() {
|
|
cy.openStudyList();
|
|
});
|
|
|
|
// TODO -> Bring back when testJSON is hosted again.
|
|
// it('checks TEST json url study route', function() {
|
|
// cy.visit(
|
|
// '/viewer?url=https://ohif-viewer.s3.eu-central-1.amazonaws.com/JSON/testJSON.json'
|
|
// );
|
|
|
|
// cy.server();
|
|
// cy.route('GET', '**/ MRStudy; /**').as('getTESTStudy');
|
|
|
|
// cy.wait('@getTESTStudy.all');
|
|
// cy.get('@getTESTStudy').should($route => {
|
|
// expect($route.status).to.be.eq(200);
|
|
// });
|
|
// });
|
|
});
|