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 0448a29Copy full SHA for 0448a29
.circleci/config.yml
@@ -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