@nepwork/dashboards
Version:
Dashboards for emergencies and monitoring
17 lines (12 loc) • 352 B
text/typescript
import { TestBed } from '@angular/core/testing';
import { ValueService } from './value.service';
describe('ValueService', () => {
let service: ValueService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ValueService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});