generator-hyper-angular
Version:
Yeoman generator for AngularJS/Express/node.js apps emphasizing modularity, configuration, and testing
30 lines (23 loc) • 610 B
JavaScript
(function () {
'use strict';
// An example configuration file.
exports.config = {
// The address of a running selenium server.
seleniumAddress: 'http://<%= expressServer %>:4444/wd/hub',
// 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: [
'../e2e/**/*Spec.js'
],
framework: 'mocha',
mochaOpts: {
reporter: 'spec',
slow: 3000
},
baseUrl: '<%= expressProtocol %>://<%= expressServer %>:<%= expressPort %>/'
};
})();