karma-e2e.conf.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. // Karma E2E configuration
  2. // base path, that will be used to resolve files and exclude
  3. basePath = '';
  4. // list of files / patterns to load in the browser
  5. files = [
  6. ANGULAR_SCENARIO,
  7. ANGULAR_SCENARIO_ADAPTER,
  8. 'test/e2e/**/*.js'
  9. ];
  10. // list of files to exclude
  11. exclude = [];
  12. // test results reporter to use
  13. // possible values: dots || progress || growl
  14. reporters = ['progress'];
  15. // web server port
  16. port = 8080;
  17. // cli runner port
  18. runnerPort = 9100;
  19. // enable / disable colors in the output (reporters and logs)
  20. colors = true;
  21. // level of logging
  22. // possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
  23. logLevel = LOG_INFO;
  24. // enable / disable watching file and executing tests whenever any file changes
  25. autoWatch = false;
  26. // Start these browsers, currently available:
  27. // - Chrome
  28. // - ChromeCanary
  29. // - Firefox
  30. // - Opera
  31. // - Safari (only Mac)
  32. // - PhantomJS
  33. // - IE (only Windows)
  34. browsers = ['Chrome'];
  35. // If browser does not capture in given timeout [ms], kill it
  36. captureTimeout = 5000;
  37. // Continuous Integration mode
  38. // if true, it capture browsers, run tests and exit
  39. singleRun = false;
  40. // Uncomment the following lines if you are using grunt's server to run the tests
  41. // proxies = {
  42. // '/': 'http://localhost:9000/'
  43. // };
  44. // URL root prevent conflicts with the site root
  45. // urlRoot = '_karma_';