From d63b8806dccbeaad0cb0ef704ac01bdc82cd4b1a Mon Sep 17 00:00:00 2001 From: Nicolas Brichet Date: Tue, 23 Jul 2024 15:51:13 +0200 Subject: [PATCH] Fix ui test --- .github/workflows/build.yml | 2 +- ui-tests/nbgitpuller_test/test.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 848d5a4..1020f75 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -135,7 +135,7 @@ jobs: - name: Execute integration tests working-directory: ui-tests run: | - jlpm playwright test --project general + jlpm playwright test --project ${{ matrix.project }} - name: Upload Playwright Test report if: always() diff --git a/ui-tests/nbgitpuller_test/test.spec.ts b/ui-tests/nbgitpuller_test/test.spec.ts index 93d0064..4c0c5cc 100644 --- a/ui-tests/nbgitpuller_test/test.spec.ts +++ b/ui-tests/nbgitpuller_test/test.spec.ts @@ -10,7 +10,7 @@ import { expect, test } from '@jupyterlab/galata'; //This is required to ensure we capture all log messages. test.use({ autoGoto: false }); -test('should emit an activation console message', async ({ page }) => { +test('should emit a non activation console message', async ({ page }) => { const logs: string[] = []; page.on('console', message => {