mirror of
https://github.com/sismics/docs.git
synced 2025-12-21 05:31:42 +00:00
21 lines
434 B
JavaScript
21 lines
434 B
JavaScript
'use strict';
|
|
|
|
exports.config = {
|
|
seleniumServerJar: '../node_modules/selenium/lib/runner/selenium-server-standalone-2.20.0.jar',
|
|
framework: 'jasmine',
|
|
rootElement: 'html',
|
|
baseUrl: 'http://localhost:9999/docs-web/src/?protractor',
|
|
capabilities: {
|
|
'browserName': 'chrome'
|
|
},
|
|
|
|
specs: [
|
|
'specs/**/*.js'
|
|
],
|
|
|
|
jasmineNodeOpts: {
|
|
isVerbose: true,
|
|
showColors: true,
|
|
defaultTimeoutInterval: 30000
|
|
}
|
|
}; |