move tunnelIdentifier out of sauce:options block

This commit is contained in:
webzwo0i 2020-11-14 22:32:32 +01:00
parent e776367794
commit 7036af79dd

View file

@ -16,11 +16,11 @@ async function runTest(testSettings){
'browserName': testSettings.browserName,
'platformName': testSettings.platformName,
'browserVersion': testSettings.browserVersion,
'tunnelIdentifier': process.env.TRAVIS_JOB_NUMBER,
'sauce:options': {
'username': process.env.SAUCE_USERNAME,
'accessKey': process.env.SAUCE_ACCESS_KEY,
'build': process.env.GIT_HASH,
'tunnelIdentifier': process.env.TRAVIS_JOB_NUMBER,
'extendedDebugging': true, // when possible, enables network.har file and network tab
'capturePerformance': true, // when possible, enables various performance related metrics
'name': name,