7eab971d3f
This ports over changes made in openstack-health to convert the project from jshint to eslint, with the eslint-config-openstack plugin. Change-Id: Iaa0490d07603e2481e1c738136f9fda1be95dea8
33 lines
480 B
JavaScript
33 lines
480 B
JavaScript
'use strict';
|
|
|
|
var gulpConfig = require('../gulp/config');
|
|
|
|
exports.config = {
|
|
|
|
allScriptsTimeout: 11000,
|
|
|
|
baseUrl: 'http://localhost:' + gulpConfig.serverPort + '/',
|
|
|
|
directConnect: true,
|
|
|
|
capabilities: {
|
|
browserName: 'chrome',
|
|
version: '',
|
|
platform: 'ANY'
|
|
},
|
|
|
|
framework: 'jasmine',
|
|
|
|
jasmineNodeOpts: {
|
|
isVerbose: false,
|
|
showColors: true,
|
|
includeStackTrace: true,
|
|
defaultTimeoutInterval: 30000
|
|
},
|
|
|
|
specs: [
|
|
'e2e/**/*.js'
|
|
]
|
|
|
|
};
|