Skip to content

Commit

Permalink
Merge pull request #1 from jtpio/skip-browser-test
Browse files Browse the repository at this point in the history
Skip the browser check for now
  • Loading branch information
ianthomas23 authored May 28, 2024
2 parents b810b14 + 4476662 commit c9a053c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ jobs:
jupyter labextension list
jupyter labextension list 2>&1 | grep -ie "jupyterlite-terminal.*OK"
python -m jupyterlab.browser_check
- name: Package the extension
run: |
Expand Down Expand Up @@ -81,10 +80,8 @@ jobs:
pip install "jupyterlab>=4.0.0,<5" jupyterlite_terminal*.whl
jupyter labextension list
jupyter labextension list 2>&1 | grep -ie "jupyterlite-terminal.*OK"
python -m jupyterlab.browser_check --no-browser-test
integration-tests:
name: Integration tests
Expand Down
3 changes: 2 additions & 1 deletion ui-tests/tests/jupyterlite_terminal.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ import { expect, test } from '@jupyterlab/galata';
*/
test.use({ autoGoto: false });

test('should emit an activation console message', async ({ page }) => {
// TODO: re-enable when testing with JupyterLite
test.skip('should emit an activation console message', async ({ page }) => {
const logs: string[] = [];

page.on('console', message => {
Expand Down

0 comments on commit c9a053c

Please sign in to comment.