@nepwork/dashboards
Version:
Dashboards for emergencies and monitoring
26 lines (20 loc) • 642 B
text/typescript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { IdentityComponent } from './identity.component';
describe('IdentityComponent', () => {
let component: IdentityComponent;
let fixture: ComponentFixture<IdentityComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ IdentityComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(IdentityComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});