mirror of
https://github.com/jupyter/notebook.git
synced 2025-04-06 13:50:29 +08:00
19 lines
320 B
TypeScript
19 lines
320 B
TypeScript
import baseConfig from '@jupyterlab/galata/lib/playwright-config';
|
|
|
|
module.exports = {
|
|
...baseConfig,
|
|
use: {
|
|
appPath: '',
|
|
video: 'retain-on-failure'
|
|
},
|
|
retries: 1,
|
|
webServer: [
|
|
{
|
|
command: 'jlpm start',
|
|
port: 8888,
|
|
timeout: 120 * 1000,
|
|
reuseExistingServer: true
|
|
}
|
|
]
|
|
};
|