Skip to content
Snippets Groups Projects
protractor-conf.js 604 B
Newer Older
exports.config = {
	seleniumAddress: 'http://localhost:4444/wd/hub',

	specs: [
		'./beat/web/reports/static/reports/test/test-spec.js',
		'./beat/web/reports/static/reports/test/report-spec.js'
	],
	allScriptsTimeout: 60000,

	// to override the default browser that Protractor uses:
	// give a list of browsers to use (firefox, chrome, safari, etc.)
	// e.g.:
	//multiCapabilities: [{
	//	browserName: 'firefox'
	//},
	//{
	//	browserName: 'chrome'
	//}],

	// disable some selenium~browser notification than can steal focus
	notify: false,

	//resultJsonOutputFile: './protractor-test-results.json'
}