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