protractor.conf.js 350 B

12345678910111213
  1. /* eslint-env node */
  2. exports.config = {
  3. specs: [ "test/e2e/**/*.spec.js" ],
  4. seleniumServerJar: "./node_modules/protractor/selenium/selenium-server-standalone-2.45.0.jar",
  5. multiCapabilities: [
  6. {"browserName": "chrome"}
  7. ],
  8. baseUrl: "http://localhost:3000/index.html",
  9. jasmineNodeOpts: {
  10. showColors: true
  11. }
  12. };