Files
perfdb/pdb-js/src/app/dashboard.service.spec.ts
2023-02-26 08:18:53 +01:00

17 lines
372 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { DashboardService } from './dashboard.service';
describe('DashboardService', () => {
let service: DashboardService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(DashboardService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});