You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

testem.js 601B

123456789101112131415161718192021222324252627
  1. 'use strict';
  2. module.exports = {
  3. test_page: 'tests/index.html?hidepassed',
  4. disable_watching: true,
  5. launch_in_ci: [
  6. 'Chrome'
  7. ],
  8. launch_in_dev: [
  9. 'Chrome'
  10. ],
  11. browser_start_timeout: 120,
  12. browser_args: {
  13. Chrome: {
  14. ci: [
  15. // --no-sandbox is needed when running Chrome inside a container
  16. process.env.CI ? '--no-sandbox' : null,
  17. '--headless',
  18. '--disable-dev-shm-usage',
  19. '--disable-software-rasterizer',
  20. '--mute-audio',
  21. '--remote-debugging-port=0',
  22. '--window-size=1440,900'
  23. ].filter(Boolean)
  24. }
  25. }
  26. };