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