Prepend an f
to it
to statments to run single tests, or to describe
to run the file.
import { TestBed, async } from '@angular/core/testing';
fdescribe('AppComponent', () => {
beforeEach(async(() => {
// [...]
}));
fit('should create', () => {
// [...]
});
it('should ...', () => {
// [...]
});
References: StackOverflow