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