Homeautomation/src/main/angular/src/app/api/schedule/entry/schedule-entry.service.spec.ts

17 lines
389 B
TypeScript

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