We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a598e4 commit 4e176baCopy full SHA for 4e176ba
data-browser/tests/e2e.spec.ts
@@ -37,6 +37,11 @@ test.describe('data-browser', async () => {
37
test.beforeEach(async ({ page }) => {
38
// Open the server
39
await page.goto(frontEndUrl);
40
+ // Sometimes we run the test server on a different port, but we should
41
+ // only change the drive if it is non-default.
42
+ if (serverUrl !== 'http://localhost:9883') {
43
+ await changeDrive(serverUrl, page);
44
+ }
45
await expect(page.locator(currentDriveTitle)).toBeVisible();
46
});
47
0 commit comments