diff --git a/.travis.yml b/.travis.yml index ccfabb5dd866..068c2197309c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,7 +30,7 @@ jobs: - env: "MODE=saucelabs_required" - env: "MODE=browserstack_required" - env: "MODE=travis_required" - env: "DEPLOY_MODE=build-artifacts" + - env: "DEPLOY_MODE=build-artifacts" - env: "DEPLOY_MODE=docs-content" - env: "DEPLOY_MODE=screenshot-tool" - env: "DEPLOY_MODE=dashboard" diff --git a/src/lib/input/input.spec.ts b/src/lib/input/input.spec.ts index f1b84b2675ad..033a9292b375 100644 --- a/src/lib/input/input.spec.ts +++ b/src/lib/input/input.spec.ts @@ -110,7 +110,7 @@ describe('MatInput without forms', function () { it('should not be treated as empty if type is date', inject([Platform], (platform: Platform) => { - if (!(platform.TRIDENT || platform.FIREFOX || (platform.SAFARI && !platform.IOS))) { + if (!(platform.TRIDENT || (platform.SAFARI && !platform.IOS))) { let fixture = TestBed.createComponent(MatInputDateTestController); fixture.detectChanges(); @@ -120,10 +120,10 @@ describe('MatInput without forms', function () { } })); - // Firefox, Safari Desktop and IE don't support type="date" and fallback to type="text". - it('should be treated as empty if type is date on Firefox and IE', + // Safari Desktop and IE don't support type="date" and fallback to type="text". + it('should be treated as empty if type is date in Safari Desktop or IE', inject([Platform], (platform: Platform) => { - if (platform.TRIDENT || platform.FIREFOX || (platform.SAFARI && !platform.IOS)) { + if (platform.TRIDENT || (platform.SAFARI && !platform.IOS)) { let fixture = TestBed.createComponent(MatInputDateTestController); fixture.detectChanges();