member_webapp/@overflow/sensor/component/sensor-detail.component.spec.ts

26 lines
671 B
TypeScript
Raw Permalink Normal View History

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