https://github.com/vega/polestar
Revision 632e3cc7f5cfb3d53a025d57f6b041aa90105ff2 authored by Kanit Wongsuphasawat on 22 February 2016, 17:53:57 UTC, committed by Kanit Wongsuphasawat on 22 February 2016, 17:53:57 UTC
1 parent b34e88d
Raw File
Tip revision: 632e3cc7f5cfb3d53a025d57f6b041aa90105ff2 authored by Kanit Wongsuphasawat on 22 February 2016, 17:53:57 UTC
Make function select working @domoritz
Tip revision: 632e3cc
protractor.conf.js
'use strict';

var paths = require('./.yo-rc.json')['generator-gulp-angular'].props.paths;

// An example configuration file.
exports.config = {
  // The address of a running selenium server.
  //seleniumAddress: 'http://localhost:4444/wd/hub',
  //seleniumServerJar: deprecated, this should be set on node_modules/protractor/config.json

  // Capabilities to be passed to the webdriver instance.
  capabilities: {
    'browserName': 'chrome'
  },

  // Spec patterns are relative to the current working directly when
  // protractor is called.
  specs: [paths.e2e + '/**/*.js'],

  // Options to be passed to Jasmine-node.
  jasmineNodeOpts: {
    showColors: true,
    defaultTimeoutInterval: 30000
  }
};
back to top