Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

31 righe
674 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. "--window-size=1920x1080"
  25. ]
  26. }
  27. }
  28. }
  29. }
  30. };