test if it makes a difference

native-events
webzwo0i 2020-11-14 21:40:53 +01:00
parent 53b589e900
commit 60ac890fc8
1 changed files with 3 additions and 1 deletions

View File

@ -16,13 +16,15 @@ async function runTest(testSettings){
'browserName': testSettings.browserName, 'browserName': testSettings.browserName,
'platformName': testSettings.platformName, 'platformName': testSettings.platformName,
'browserVersion': testSettings.browserVersion, 'browserVersion': testSettings.browserVersion,
'extendedDebugging': true, // when possible, enables network.har file and network tab
'capturePerformance': true, // when possible, enables various performance related metrics
'sauce:options': { 'sauce:options': {
'username': process.env.SAUCE_USERNAME, 'username': process.env.SAUCE_USERNAME,
'accessKey': process.env.SAUCE_ACCESS_KEY, 'accessKey': process.env.SAUCE_ACCESS_KEY,
'build': process.env.GIT_HASH, 'build': process.env.GIT_HASH,
'tunnelIdentifier': process.env.TRAVIS_JOB_NUMBER, 'tunnelIdentifier': process.env.TRAVIS_JOB_NUMBER,
'extendedDebugging': true, // when possible, enables network.har file and network tab 'extendedDebugging': true, // when possible, enables network.har file and network tab
'capturePerformance': true, 'capturePerformance': true, // when possible, enables various performance related metrics
'name': name, 'name': name,
/* As a best practice, set important test metadata and execution options /* As a best practice, set important test metadata and execution options
such as build info, tags for reporting, and timeout durations. such as build info, tags for reporting, and timeout durations.