File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 30
30
- env : " MODE=saucelabs_required"
31
31
- env : " MODE=browserstack_required"
32
32
- env : " MODE=travis_required"
33
- env : " DEPLOY_MODE=build-artifacts"
33
+ - env : " DEPLOY_MODE=build-artifacts"
34
34
- env : " DEPLOY_MODE=docs-content"
35
35
- env : " DEPLOY_MODE=screenshot-tool"
36
36
- env : " DEPLOY_MODE=dashboard"
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ describe('MatInput without forms', function () {
110
110
111
111
it ( 'should not be treated as empty if type is date' ,
112
112
inject ( [ Platform ] , ( platform : Platform ) => {
113
- if ( ! ( platform . TRIDENT || platform . FIREFOX || ( platform . SAFARI && ! platform . IOS ) ) ) {
113
+ if ( ! ( platform . TRIDENT || ( platform . SAFARI && ! platform . IOS ) ) ) {
114
114
let fixture = TestBed . createComponent ( MatInputDateTestController ) ;
115
115
fixture . detectChanges ( ) ;
116
116
@@ -123,7 +123,7 @@ describe('MatInput without forms', function () {
123
123
// Firefox, Safari Desktop and IE don't support type="date" and fallback to type="text".
124
124
it ( 'should be treated as empty if type is date on Firefox and IE' ,
125
125
inject ( [ Platform ] , ( platform : Platform ) => {
126
- if ( platform . TRIDENT || platform . FIREFOX || ( platform . SAFARI && ! platform . IOS ) ) {
126
+ if ( platform . TRIDENT || ( platform . SAFARI && ! platform . IOS ) ) {
127
127
let fixture = TestBed . createComponent ( MatInputDateTestController ) ;
128
128
fixture . detectChanges ( ) ;
129
129
You can’t perform that action at this time.
0 commit comments