Skip to content

Commit dcfe0b0

Browse files
devversionjelbourn
authored andcommitted
chore: update test browsers to latest version (#2297)
* Updates the Unit test browsers to the `latest` version on Saucelabs * No longer records videos & screenshots on the e2e mode, because this seems to slow the builds significant.
1 parent 3cf25a0 commit dcfe0b0

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

test/browser-providers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export const customLaunchers: { [name: string]: BrowserLauncherInfo } = {
6363
'SL_CHROME': {
6464
base: 'SauceLabs',
6565
browserName: 'chrome',
66-
version: '46'
66+
version: 'latest'
6767
},
6868
'SL_CHROMEBETA': {
6969
base: 'SauceLabs',
@@ -78,7 +78,7 @@ export const customLaunchers: { [name: string]: BrowserLauncherInfo } = {
7878
'SL_FIREFOX': {
7979
base: 'SauceLabs',
8080
browserName: 'firefox',
81-
version: '42'
81+
version: 'latest'
8282
},
8383
'SL_FIREFOXBETA': {
8484
base: 'SauceLabs',

test/protractor.conf.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,11 @@ if (process.env['TRAVIS']) {
4343
'browserName': 'chrome',
4444
'tunnel-identifier': process.env['TRAVIS_JOB_NUMBER'],
4545
'build': process.env['TRAVIS_JOB_NUMBER'],
46-
'name': 'Material 2 E2E Tests'
46+
'name': 'Material 2 E2E Tests',
47+
48+
// By default Saucelabs tries to record the whole e2e run. This can slow down the builds.
49+
'recordVideo': false,
50+
'recordScreenshots': false
4751
};
4852
}
4953

0 commit comments

Comments
 (0)