Skip to content

Commit 7a59cab

Browse files
authored
Use full paths
1 parent 5e880ec commit 7a59cab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui-tests/tests/jupytereverywhere.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ test.describe('General', () => {
6767
});
6868

6969
test('Should load a read-only notebook', async ({ page }) => {
70-
await page.route('**/api/v1/auth/issue', async route => {
70+
await page.route('http://localhost:8080/api/v1/auth/issue', async route => {
7171
const json = { token: 'test-token' };
7272
await route.fulfill({ json });
7373
});
7474

75-
await page.route('**/api/v1/notebooks/*', async route => {
75+
await page.route('http://localhost:8080/api/v1/notebooks/*', async route => {
7676
const json = {
7777
id: 'dummy-notebook-id',
7878
domain_id: 'domain',

0 commit comments

Comments
 (0)