mirror of
https://github.com/sismics/docs.git
synced 2025-12-29 17:41:44 +00:00
Init e2e testing
This commit is contained in:
21
docs-web/src/main/webapp/test/conf.js
Normal file
21
docs-web/src/main/webapp/test/conf.js
Normal file
@@ -0,0 +1,21 @@
|
||||
'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
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user