Skip to content

Commit

Permalink
For now restrict tests to run to debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski committed Sep 1, 2023
1 parent 8e5cb06 commit 97ed301
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions galata/playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = {
name: 'documentation',
// Try one retry as some tests are flaky
retries: process.env.CI ? 2 : 0,
testMatch: 'test/documentation/**/*.test.ts',
testMatch: 'test/documentation/**/debugger.test.ts',
testIgnore: '**/.ipynb_checkpoints/**',
timeout: 90000,
use: {
Expand All @@ -22,12 +22,12 @@ module.exports = {
},
{
name: 'galata',
testMatch: 'test/galata/**',
testMatch: 'NOtest/galata/**',
testIgnore: '**/.ipynb_checkpoints/**'
},
{
name: 'jupyterlab',
testMatch: 'test/jupyterlab/**',
testMatch: 'test/jupyterlab/debugger.test.ts',
testIgnore: '**/.ipynb_checkpoints/**',
use: {
contextOptions: {
Expand Down

0 comments on commit 97ed301

Please sign in to comment.