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