repo for angularjs testing training
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

28 lines
835 B

var path = require('path');
exports.config = {
//baseUrl: 'http://localhost:3000/',
seleniumServerJar: path.join(__dirname, "../../../bin/selenium-server-standalone-2.53.0.jar"),
chromeDriver: path.join(__dirname, "../../../bin/chromedriver.exe"),
specs: ['../spec/home.spec.js'],
////// chrome configuration
// multiCapabilities: [{
// browserName: 'chrome',
// chromeOptions: {
// args: ['--test-type']
// }
// }],
////// phantomjs configuration
capabilities: {
'browserName': 'phantomjs',
'phantomjs.binary.path': path.join(__dirname, "./node_modules/phantomjs/bin/phantomjs"),
'phantomjs.cli.args': ['--ignore-ssl-errors=true', '--web-security=false'],
'phantomjs.ghostdriver.cli.args': ['--loglevel=DEBUG']
}
}