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