member_webapp/@overflow/sensor/store/detail/detail.effect.spec.ts

16 lines
355 B
TypeScript
Raw Normal View History

2018-04-06 11:02:18 +00:00
import { TestBed, inject } from '@angular/core/testing';
import { Effects } from './detail.effect';
describe('ProbeDetail.Effects', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [Effects]
});
});
it('should be created', inject([Effects], (effects: Effects) => {
expect(effects).toBeTruthy();
}));
});