mirror of
https://github.com/gwenhael-le-moine/ledgerrb.git
synced 2024-12-30 22:23:35 +01:00
20 lines
261 B
JavaScript
20 lines
261 B
JavaScript
|
exports.config = {
|
||
|
allScriptsTimeout: 11000,
|
||
|
|
||
|
specs: [
|
||
|
'e2e/*.js'
|
||
|
],
|
||
|
|
||
|
capabilities: {
|
||
|
'browserName': 'chrome'
|
||
|
},
|
||
|
|
||
|
baseUrl: 'http://localhost:8000/app/',
|
||
|
|
||
|
framework: 'jasmine',
|
||
|
|
||
|
jasmineNodeOpts: {
|
||
|
defaultTimeoutInterval: 30000
|
||
|
}
|
||
|
};
|