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 05c4972 commit ca7094dCopy full SHA for ca7094d
browser/e2e/tests/e2e.spec.ts
@@ -330,7 +330,8 @@ test.describe('data-browser', async () => {
330
test('configure drive page', async ({ page }) => {
331
await signIn(page);
332
await openConfigureDrive(page);
333
- await expect(currentDriveTitle(page)).toHaveText('localhost');
+ const expectedTitle = new URL(SERVER_URL);
334
+ await expect(currentDriveTitle(page)).toContainText(expectedTitle.hostname);
335
336
// temp disable this, because of trailing slash in base URL
337
// await page.click(':text("https://atomicdata.dev") + button:text("Select")');
0 commit comments