Project

General

Profile

1 60616 akoulalis
import { TestBed } from '@angular/core/testing';
2
3
import { DashboardService } from './dashboard.service';
4
5
describe('DashboardService', () => {
6
  let service: DashboardService;
7
8
  beforeEach(() => {
9
    TestBed.configureTestingModule({});
10
    service = TestBed.inject(DashboardService);
11
  });
12
13
  it('should be created', () => {
14
    expect(service).toBeTruthy();
15
  });
16
});