Inegrate calendi in meeting Schedule
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.

32 lines
757 B

  1. // Protractor configuration file, see link for more information
  2. // https://github.com/angular/protractor/blob/master/lib/config.ts
  3. /*global jasmine */
  4. var SpecReporter = require('jasmine-spec-reporter');
  5. exports.config = {
  6. allScriptsTimeout: 11000,
  7. specs: [
  8. './e2e/**/*.e2e-spec.ts'
  9. ],
  10. capabilities: {
  11. 'browserName': 'chrome'
  12. },
  13. directConnect: true,
  14. baseUrl: 'http://localhost:4200/',
  15. framework: 'jasmine',
  16. jasmineNodeOpts: {
  17. showColors: true,
  18. defaultTimeoutInterval: 30000,
  19. print: function() {}
  20. },
  21. useAllAngular2AppRoots: true,
  22. beforeLaunch: function() {
  23. require('ts-node').register({
  24. project: 'e2e'
  25. });
  26. },
  27. onPrepare: function() {
  28. jasmine.getEnv().addReporter(new SpecReporter());
  29. }
  30. };