Angular 5 - Running Single Tests in Jasmine

Prepend an f to itto 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