23 lines
276 B
JavaScript
23 lines
276 B
JavaScript
//jshint strict: false
|
|
exports.config = {
|
|
|
|
allScriptsTimeout: 11000,
|
|
|
|
specs: [
|
|
'*.js'
|
|
],
|
|
|
|
capabilities: {
|
|
browserName: 'chrome'
|
|
},
|
|
|
|
baseUrl: 'http://localhost:8000/',
|
|
|
|
framework: 'jasmine',
|
|
|
|
jasmineNodeOpts: {
|
|
defaultTimeoutInterval: 30000
|
|
}
|
|
|
|
};
|