Skip to content

Commit

Permalink
ci: disable sauce labs safari and ios tests (angular#36973)
Browse files Browse the repository at this point in the history
With this change we disable SauceLabs tests on Safari and iOS as they are current broken.

Issue to investigate further: angular#36975

PR Close angular#36973
  • Loading branch information
alan-agius4 authored and mhevery committed May 8, 2020
1 parent 5f3fba4 commit 82a3bd5
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions browser-providers.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,17 @@ var CIconfiguration = {
'Android8': {unitTest: {target: 'SL', required: true}, e2e: {target: null, required: true}},
'Android9': {unitTest: {target: 'SL', required: true}, e2e: {target: null, required: true}},
'Android10': {unitTest: {target: 'SL', required: true}, e2e: {target: null, required: true}},
'Safari12': {unitTest: {target: 'SL', required: true}, e2e: {target: null, required: true}},
'Safari13': {unitTest: {target: 'SL', required: true}, e2e: {target: null, required: true}},
'iOS12': {unitTest: {target: 'SL', required: true}, e2e: {target: null, required: true}},
'iOS13': {unitTest: {target: 'SL', required: true}, e2e: {target: null, required: true}},
// Disable all Safari and iOS tests because of incorrect results
// ex:
// Mobile Safari 13.0.0 (iOS 13.0.0) styling static template only should capture static values in TStylingKey FAILED
// Expected $.content = 'dynamic' to equal '"dynamic"'.
// Mobile Safari 12.0.0 (iOS 12.0.0) styling should handle values wrapped into SafeValue FAILED
// Expected 'url("http://angular-ci.local:9876/1.png")' to contain 'url("/1.png")'.s
// Tracking in: https://github.com/angular/angular/issues/36975
'Safari12': {unitTest: {target: 'SL', required: false}, e2e: {target: null, required: true}},
'Safari13': {unitTest: {target: 'SL', required: false}, e2e: {target: null, required: true}},
'iOS12': {unitTest: {target: 'SL', required: false}, e2e: {target: null, required: true}},
'iOS13': {unitTest: {target: 'SL', required: false}, e2e: {target: null, required: true}},
'WindowsPhone': {unitTest: {target: 'BS', required: false}, e2e: {target: null, required: true}}
};

Expand Down

0 comments on commit 82a3bd5

Please sign in to comment.