Files
doneit-web/src/app/ui/agenda/service/list-box.service.spec.ts
T

17 lines
363 B
TypeScript
Raw Normal View History

2021-08-31 16:32:16 +01:00
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();
});
});