RSS Git Download  Clone
Raw View History
Blames found: 6 Mode: application/typescript Binary: false


Hang on, we reloading big blames...
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { BootstrapComponent } from './bootstrap.component'; describe('BootstrapComponent', () => { let component: BootstrapComponent; let fixture: ComponentFixture<BootstrapComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [BootstrapComponent] })
.compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(BootstrapComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });