Skip to content

Commit

Permalink
Fix ui test
Browse files Browse the repository at this point in the history
  • Loading branch information
brichet committed Jul 23, 2024
1 parent 2df533e commit d63b880
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion ui-tests/nbgitpuller_test/test.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 => {
Expand Down

0 comments on commit d63b880

Please sign in to comment.