Skip to content

Commit dbd0a8d

Browse files
committed
Fix playwright test
1 parent 4375ea4 commit dbd0a8d

2 files changed

Lines changed: 3 additions & 9 deletions

File tree

tsconfig.json

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,8 @@
1717
"rootDir": "src",
1818
"strictNullChecks": true,
1919
"target": "ES2018",
20-
"strict": true
20+
"strict": false
2121
},
2222
"include": ["src/**/*"],
23-
"references": [
24-
{
25-
"@jupyterlab/bluetooth": ["./src/bluetooth"],
26-
"@jupyterlab/bluetooth-extension": ["./src/bluetooth-extension"],
27-
"movehub-extension": ["./src/movehub-extension"]
28-
}
29-
]
23+
"rootDirs": ["src", "ui-tests"]
3024
}

ui-tests/tests/jupyterlab_web_bluetooth_manager.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ test('should emit an activation console message', async ({ page }) => {
1717

1818
expect(
1919
logs.filter(
20-
s => s === 'JupyterLab extension bluetooh-manager is activated!'
20+
s => s === 'JupyterLab bluetooth-manager-plugin is activated!'
2121
)
2222
).toHaveLength(1);
2323
});

0 commit comments

Comments
 (0)