Files
doneit-web/src/app/ui/agenda/service/list-box.service.spec.ts
T
2024-10-18 16:22:45 +01:00

17 lines
363 B
TypeScript

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