import { ComponentFixture, TestBed } from '@angular/core/testing'; import { PromisesExampleComponent } from './promises-example.component'; describe('PromisesExampleComponent', () => { let component: PromisesExampleComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ PromisesExampleComponent ] }) .compileComponents(); fixture = TestBed.createComponent(PromisesExampleComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });