16 lines
439 B
TypeScript
16 lines
439 B
TypeScript
/* tslint:disable:no-unused-variable */
|
|
|
|
import { TestBed, inject, waitForAsync } from '@angular/core/testing';
|
|
import { BootstrapService } from './bootstrap.service';
|
|
|
|
describe('BootstrapService', () => {
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
providers: [BootstrapService]
|
|
});
|
|
});
|
|
|
|
it('should ...', inject([BootstrapService], (service: BootstrapService) => {
|
|
expect(service).toBeTruthy();
|
|
}));
|
|
});
|