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