From 25f59d7cbaccfdfc6d09276b85604c532fadb976 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Tue, 28 May 2024 15:03:22 +0200 Subject: [PATCH 1/2] Skip browser test for now --- .github/workflows/build.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b2c534b..6434e25 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: | @@ -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 From 4476662c57d592e2ee7453850d8954356f218ade Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Tue, 28 May 2024 16:38:18 +0200 Subject: [PATCH 2/2] Skip UI test for now --- ui-tests/tests/jupyterlite_terminal.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui-tests/tests/jupyterlite_terminal.spec.ts b/ui-tests/tests/jupyterlite_terminal.spec.ts index 77c04e4..99d11f5 100644 --- a/ui-tests/tests/jupyterlite_terminal.spec.ts +++ b/ui-tests/tests/jupyterlite_terminal.spec.ts @@ -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 => {