Files
elasticsearch-js/grunt/config/saucelabs-mocha.js
Spencer 7c1573fb07 Use standard and prettier (#10)
* switch from custom eslint config to standard + prettier

* fix new standard eslint violations

* add editorconfig file

* auto-fix all other violations

* update lint yarn script

* remove jshint comment
2019-07-09 13:24:13 -07:00

37 lines
806 B
JavaScript

var slk = require('../../test/utils/slk');
module.exports = {
all: {
options: {
urls: [
'http://127.0.0.1:8000/unit.html',
'http://127.0.0.1:8000/builds.html',
],
testname: 'es.js client tests',
build: process.env.TRAVIS_BUILD_ID,
concurrency: 10,
username: slk.user,
key: slk.key,
browsers: [
{
browserName: 'googlechrome',
platform: 'XP',
},
{
browserName: 'firefox',
platform: 'Linux',
},
{
browserName: 'internet explorer',
version: '11',
platform: 'Windows 8.1',
},
{
browserName: 'internet explorer',
version: '10',
platform: 'Windows 8',
},
],
},
},
};