* Tests for routes: PT/CT json, studies, series, frames, metadatas * Fix based on reviews and JSON file for PT/CT Study added * chore: revert to remote JSON file * chore: delete PTCTStudy.json file We can circle back to this approach when/if we have issues. No need to hold-up this PR. My fault on this one.
23 lines
657 B
JavaScript
23 lines
657 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();
|
|
});
|
|
|
|
it('checks PT/CT json url study route', function() {
|
|
cy.visit('/viewer?url=https://s3.eu-central-1.amazonaws.com/ohif-viewer/JSON/PTCTStudy.json');
|
|
|
|
cy.server();
|
|
cy.route('GET', '**/PTCTStudy/**').as('getPTCTStudy');
|
|
|
|
cy.wait('@getPTCTStudy.all');
|
|
cy.get('@getPTCTStudy').should($route => {
|
|
expect($route.status).to.be.eq(200);
|
|
});
|
|
|
|
cy.screenshot();
|
|
cy.percyCanvasSnapshot('PT/CT json study route');
|
|
});
|
|
});
|