playwright.config.js 340 B

1234567891011121314
  1. /**
  2. * Configuration for Playwright using default from @jupyterlab/galata
  3. */
  4. const baseConfig = require('@jupyterlab/galata/lib/playwright-config');
  5. module.exports = {
  6. ...baseConfig,
  7. webServer: {
  8. command: 'jlpm start',
  9. url: 'http://localhost:8888/lab',
  10. timeout: 120 * 1000,
  11. reuseExistingServer: !process.env.CI
  12. }
  13. };