-
Notifications
You must be signed in to change notification settings - Fork 506
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b81ea29
commit ad83d67
Showing
5 changed files
with
69 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,36 @@ | ||
const baseConfig = require('@jupyterlab/galata/lib/playwright-config'); | ||
|
||
module.exports = { | ||
...baseConfig, | ||
timeout: 240000, | ||
projects: [ | ||
{ | ||
...baseConfig, | ||
name: 'voila', | ||
timeout: 240000, | ||
use: { | ||
baseURL: 'http://localhost:8866/voila/', | ||
video: 'retain-on-failure' | ||
}, | ||
// Try one retry as some tests are flaky | ||
retries: 1 | ||
}, | ||
{ | ||
...baseConfig, | ||
name: 'voila-fps', | ||
timeout: 240000, | ||
use: { | ||
baseURL: 'http://localhost:8867/voila/', | ||
video: 'retain-on-failure' | ||
}, | ||
// Try one retry as some tests are flaky | ||
retries: 1 | ||
} | ||
], | ||
reporter: [ | ||
[process.env.CI ? 'dot' : 'list'], | ||
[ | ||
'@jupyterlab/galata/lib/benchmarkReporter', | ||
{ outputFile: 'voila-benchmark.json' } | ||
], | ||
['@playwright/test/lib/test/reporters/html'] | ||
], | ||
use: { | ||
baseURL: 'http://localhost:8866/voila/', | ||
video: 'retain-on-failure' | ||
}, | ||
// Try one retry as some tests are flaky | ||
retries: 1 | ||
] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters