mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-14 07:26:47 +00:00
23 lines
278 B
JavaScript
23 lines
278 B
JavaScript
//jshint strict: false
|
|
exports.config = {
|
|
|
|
allScriptsTimeout: 11000,
|
|
|
|
specs: [
|
|
'*.js'
|
|
],
|
|
|
|
capabilities: {
|
|
'browserName': 'chrome'
|
|
},
|
|
|
|
baseUrl: 'http://localhost:8000/',
|
|
|
|
framework: 'jasmine',
|
|
|
|
jasmineNodeOpts: {
|
|
defaultTimeoutInterval: 30000
|
|
}
|
|
|
|
};
|