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