File tree 2 files changed +6
-8
lines changed
2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 3
3
// Register the Babel require hook
4
4
require ( 'babel-core/register' ) ;
5
5
6
- var chai = require ( 'chai' ) ;
6
+ const chai = require ( 'chai' ) ;
7
7
8
8
// Load Chai assertions
9
9
global . expect = chai . expect ;
@@ -16,4 +16,4 @@ global.sinon = require('sinon');
16
16
// Initialize Chai plugins
17
17
chai . use ( require ( 'sinon-chai' ) ) ;
18
18
chai . use ( require ( 'chai-as-promised' ) ) ;
19
- chai . use ( require ( 'chai-things' ) )
19
+ chai . use ( require ( 'chai-things' ) ) ;
Original file line number Diff line number Diff line change @@ -13,10 +13,7 @@ var config = {
13
13
// with relative paths will be prepended with this.
14
14
baseUrl : 'http://localhost:' + ( process . env . PORT || '<%= Number(devPort) + 1 %>' ) ,
15
15
16
- // Credientials for Saucelabs
17
- sauceUser : process . env . SAUCE_USERNAME ,
18
-
19
- sauceKey : process . env . SAUCE_ACCESS_KEY ,
16
+ directConnect : true ,
20
17
21
18
// list of files / patterns to load in the browser
22
19
specs : [
@@ -35,8 +32,9 @@ var config = {
35
32
capabilities : {
36
33
'browserName' : 'chrome' ,
37
34
'name' : 'Fullstack E2E' ,
38
- 'tunnel-identifier' : process . env . TRAVIS_JOB_NUMBER ,
39
- 'build' : process . env . TRAVIS_BUILD_NUMBER
35
+ 'chromeOptions' : {
36
+ 'args' : [ 'show-fps-counter=true' ]
37
+ } ,
40
38
} ,
41
39
42
40
// ----- The test framework -----
You can’t perform that action at this time.
0 commit comments