eeg_portal/eeg_frontend/src/app/services/auth.spec.ts

17 lines
348 B
TypeScript

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