member_webapp/@overflow/sensor/component/sensor-detail.component.spec.ts
crusader b774fc3722 ing
2018-06-01 19:54:44 +09:00

26 lines
671 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { SensorDetailComponent } from './sensor-detail.component';
describe('SensorDetailComponent', () => {
let component: SensorDetailComponent;
let fixture: ComponentFixture<SensorDetailComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ SensorDetailComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(SensorDetailComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});