This does not install the chrome driver by default. It only modifies
the config to support chrome as an option.
For those that want to test with Chrome in addition to Firefox:
$ npm install --save-dev chromedriver
$ ng e2e --env chrome
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Signed-off-by: Jane Sandberg <js7389@princeton.edu>
Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>
// '-vv'
]
}
+ },
+ // To test with chrome:
+ // $ npm install --save-dev chromedriver
+ // $ ng e2e --evn chrome
+ chrome: {
+ desiredCapabilities : {
+ browserName : 'chrome',
+ alwaysMatch: {
+ acceptInsecureCerts: true,
+ }
+ },
+ webdriver: {
+ start_process: true,
+ server_path: '',
+ cli_args: [
+ ]
+ }
}
}
};