6a4be31ccd
stackviz-nodejs10-run-test-browser job started failing on chrome browser - https://bugs.launchpad.net/stackviz/+bug/1908606 Horizon and its plugins also moved the nodejs browser jobs to firefox now, let's move stackviz jobs too to make this job green. Closes-Bug: #1908606 Change-Id: I4a63a54ee5fce983c3254805b39549d145159be9
33 lines
481 B
JavaScript
33 lines
481 B
JavaScript
'use strict';
|
|
|
|
var gulpConfig = require('../gulp/config');
|
|
|
|
exports.config = {
|
|
|
|
allScriptsTimeout: 11000,
|
|
|
|
baseUrl: 'http://localhost:' + gulpConfig.serverPort + '/',
|
|
|
|
directConnect: true,
|
|
|
|
capabilities: {
|
|
browserName: 'firefox',
|
|
version: '',
|
|
platform: 'ANY'
|
|
},
|
|
|
|
framework: 'jasmine',
|
|
|
|
jasmineNodeOpts: {
|
|
isVerbose: false,
|
|
showColors: true,
|
|
includeStackTrace: true,
|
|
defaultTimeoutInterval: 30000
|
|
},
|
|
|
|
specs: [
|
|
'e2e/**/*.js'
|
|
]
|
|
|
|
};
|