You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mockInstance.then=undefined; // Ensure 'then' is undefined to prevent hanging
30
30
```
31
31
32
+
## Integration Tests
33
+
These tests can be a little slow as VS Code needs to be downloaded and launched.
34
+
- Use `npm run test:integration` to run integration tests with local Jupyter Kernels (add `-- -- --grep <pattern>` to filter tests, pay attention to the prefix `-- --`)
35
+
- Use `npm run test:integration:web` to run integration tests with Remote Jupyter Kernels and VSCode in browser (`--grep` is not supported)
36
+
37
+
32
38
## Scripts
33
39
- Use `npm install` to install dependencies if you changed `package.json`
34
-
- Use `npm run test:unittests` for unit tests (add `--grep <pattern>` to filter tests)
40
+
- Use `npm run test:unittests` for unit tests (add `-- -- --grep <pattern>` to filter tests, pay attention to the prefix `-- --`)
41
+
- Use `npm run test:integration` to run integration tests with local Jupyter Kernels (add `-- -- --grep <pattern>` to filter tests, pay attention to the prefix `-- --`)
42
+
- Use `npm run test:integration:web` to run integration tests with Remote Jupyter Kernels and VSCode in browser (`--grep` is not supported)
35
43
- Use `npm run lint` to check for linter issues
36
44
- Use `npm run format` to check code style
37
45
- Use `npm run format-fix` to auto-fix formatting issues
0 commit comments