https://github.com/vega/polestar
Revision 3497aa47764c0dbdf26cddf5017fbddf74509426 authored by Kanit Wongsuphasawat on 30 August 2016, 15:31:54 UTC, committed by GitHub on 30 August 2016, 15:31:54 UTC
@zeningqu  To clarify, despite the time pressure, if clean up takes 5 mins we should still do it.  If it requires reimplementation, then we can punt on it. :)
1 parent 6ac6560
Raw File
Tip revision: 3497aa47764c0dbdf26cddf5017fbddf74509426 authored by Kanit Wongsuphasawat on 30 August 2016, 15:31:54 UTC
remove console.log
Tip revision: 3497aa4
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