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.
 
 
 
 
 
 

33 lines
765 B

  1. module.exports = {
  2. src_folders: ["test/e2e/specs"],
  3. output_folder: "test/e2e/reports",
  4. globals_path: "test/e2e/globals.js",
  5. selenium: {
  6. start_process: false
  7. },
  8. test_settings: {
  9. default: {
  10. launch_url: "http://localhost:8080",
  11. selenium_port: 9515,
  12. selenium_host: "localhost",
  13. default_path_prefix: "",
  14. globals: {
  15. waitForConditionTimeout: 5000
  16. },
  17. desiredCapabilities: {
  18. browserName: "chrome",
  19. chromeOptions: {
  20. args: [
  21. "--headless",
  22. "--no-sandbox",
  23. "--disable-gpu",
  24. "--allow-running-insecure-content",
  25. "--ignore-certificate-errors",
  26. "--window-size=1920x1080"
  27. ]
  28. }
  29. }
  30. }
  31. }
  32. };