Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

testem.js 556 B

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

Press p or to see the previous file or, n or to see the next file

Comments

Loading...