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