chore(lint): replace gulp check-task with tslint no-jasmine-focus rule

fixes #11800
This commit is contained in:
Joao Dias
2016-10-27 20:57:10 +02:00
committed by vsavkin
parent 0a94845435
commit e86573bac8
7 changed files with 5 additions and 61 deletions

View File

@ -21,6 +21,7 @@ describe('some component', () => {
// #enddocregion
// #docregion fdescribe
/* tslint:disable-next-line:no-jasmine-focus */
fdescribe('some component', () => {
it('has a test', () => {
// This test will run.
@ -43,6 +44,7 @@ describe('another component', () => {
// #docregion fit
describe('some component', () => {
/* tslint:disable-next-line:no-jasmine-focus */
fit('has a test', () => {
// This test will run.
});