16 lines
368 B
TypeScript
16 lines
368 B
TypeScript
import { TestBed, inject } from '@angular/core/testing';
|
|
|
|
import { GroupService } from './group.service';
|
|
|
|
describe('GroupService', () => {
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
providers: [GroupService]
|
|
});
|
|
});
|
|
|
|
it('should be created', inject([GroupService], (service: GroupService) => {
|
|
expect(service).toBeTruthy();
|
|
}));
|
|
});
|