We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 425f325 commit 3d33e21Copy full SHA for 3d33e21
.circleci/config.yml
@@ -246,7 +246,7 @@ jobs:
246
SAUCE_ACCESS_KEY: "9b988f434ff8-fbca-8aa4-4ae3-35442987"
247
# Note: This number should not be too high because otherwise we might run into
248
# a rate limit exception.
249
- KARMA_PARALLEL_BROWSERS: 2
+ KARMA_PARALLEL_BROWSERS: 1
250
steps:
251
- *checkout_code
252
- *restore_cache
@@ -503,7 +503,7 @@ workflows:
503
504
unit_tests:
505
jobs:
506
- - tests_browserstack:
+ - tests_saucelabs:
507
filters: *ignore_presubmit_branch_filter
508
509
# Snapshot tests workflow that is scheduled to run all specified jobs every hour.
test/browser-providers.js
@@ -19,7 +19,7 @@ const browserConfig = {
19
'IE9': { unitTest: {target: null, }},
20
'IE10': { unitTest: {target: null, }},
21
'IE11': { unitTest: {target: null, }},
22
- 'Edge': { unitTest: {target: 'browserstack', }},
+ 'Edge': { unitTest: {target: 'saucelabs', }},
23
'Android4.1': { unitTest: {target: null, }},
24
'Android4.2': { unitTest: {target: null, }},
25
'Android4.3': { unitTest: {target: null, }},
@@ -33,7 +33,7 @@ const browserConfig = {
33
'iOS8': { unitTest: {target: null, }},
34
'iOS9': { unitTest: {target: null, }},
35
'iOS10': { unitTest: {target: null, }},
36
- 'iOS11': { unitTest: {target: 'saucelabs', }},
+ 'iOS11': { unitTest: {target: null, }},
37
'WindowsPhone': { unitTest: {target: null, }}
38
};
39
test/karma.conf.js
@@ -83,9 +83,9 @@ module.exports = config => {
83
sauceLabs: {
84
testName: 'Angular Material Unit Tests',
85
startConnect: false,
86
- recordVideo: false,
+ recordVideo: true,
87
recordScreenshots: false,
88
- idleTimeout: 600,
+ idleTimeout: 6000,
89
commandTimeout: 600,
90
maxDuration: 5400,
91
},
0 commit comments