Skip to content

Commit 8fd332c

Browse files
committed
fix(e2e): fix flaky remote-manifest test and unskip working test
1 parent b6026d5 commit 8fd332c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/specs/remote-manifest.e2e.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@ describe('VolView loading of remoteManifest.json', () => {
99
};
1010
const fileName = 'remoteFilesBadUrl.json';
1111
await writeManifestToFile(manifest, fileName);
12-
await openVolViewPage(fileName);
12+
13+
const urlParams = `?urls=[tmp/${fileName}]`;
14+
await volViewPage.open(urlParams);
1315

1416
await volViewPage.waitForNotification();
1517
});
1618

17-
it.skip('should load relative URI with no name property', async () => {
19+
it('should load relative URI with no name property', async () => {
1820
await downloadFile(MINIMAL_DICOM.url, MINIMAL_DICOM.name);
1921

2022
const manifest = {

0 commit comments

Comments
 (0)