beforeEach(fakeAsync(() => {
   fixture = TestBed.createComponent(TaskTimerEditorComponent);
   component = fixture.componentInstance;
   fixture.detectChanges();
   tick();
 }));
 it('should have expected <h1> text', () => {
   fixture.detectChanges();
   const h1 = de.nativeElement;
   expect(h1.innerText).toMatch(/angular/i,
     '<h1> should say something about "Angular"');
 });
 beforeEach(() => {
   fixture = TestBed.createComponent(UsertrackedComponent);
   component = fixture.componentInstance;
   fixture.detectChanges();
 });
 beforeEach(() => {
   fixture = TestBed.createComponent(RankRecipientsQuestionResponseComponent);
   component = fixture.componentInstance;
   fixture.detectChanges();
 });
 beforeEach(() => {
   fixture = TestBed.createComponent(PendingTransactionsComponent);
   component = fixture.componentInstance;
   fixture.detectChanges();
 });
 beforeEach(() => {
   fixture = TestBed.createComponent(ProjectDetailOverviewComponent);
   component = fixture.componentInstance;
   fixture.detectChanges();
 });
 beforeEach(() => {
   fixture = TestBed.createComponent(UpcomingscholarshipComponent);
   component = fixture.componentInstance;
   fixture.detectChanges();
 });
 beforeEach(() => {
     router = TestBed.get(Router);
     authService = TestBed.get(AuthenticationService);
     fixture = TestBed.createComponent(TestComponent);
     fixture.detectChanges();
 });
 it("dispatches a request for data", () => {
   spyOn(actions, "fetchExplore");
   spyOn(store, "dispatch");
   fixture.detectChanges();
   expect(store.dispatch).toHaveBeenCalledWith(actions.fetchExplore());
 });
 beforeEach(() => {
   fixture = TestBed.createComponent(AttendanceAverageDashboardComponent);
   component = fixture.componentInstance;
   fixture.detectChanges();
 });