I am trying to follow the tutorial at https://docs.angularjs.org/tutorial and have an error running the command
npm run protractor
Here is the
in your conf.js file change to chromeOnly: false
exports.config = {
allScriptsTimeout: 11000,
specs: [
'e2e/*.js'
],
capabilities: {
'browserName': 'chrome'
},
chromeOnly: false,
baseUrl: 'http://localhost:8000/',
framework: 'jasmine',
jasmineNodeOpts: {
defaultTimeoutInterval: 30000
}
};
similer issue you can find here #176