Toggle navigation
P3X GitList Snapshot
GitHub
Repo
Changelog
To do
Releases
Themes
Change log
Loading change log ...
To do ...
Loading todo ...
browsing:
346264cd6b72d6be63bdae1b5b484307b019784e
Branches
master
Files
Commits
Log
Graph
Stats
angular-http-cache-interceptor.git
src
app
cache
bootstrap
bootstrap.component.spec.ts
RSS
Git
Fetch origin
Download
ZIP
TAR
Clone
Raw
View
History
Clone
SSH
HTTPS
Blames found: 6
Mode: application/typescript
Binary: false
Hang on, we reloading big blames...
18d9f050
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
248ac3a3
import { BootstrapComponent } from './bootstrap.component'; describe('BootstrapComponent', () => { let component: BootstrapComponent; let fixture: ComponentFixture<BootstrapComponent>;
18d9f050
beforeEach(waitForAsync(() => {
248ac3a3
TestBed.configureTestingModule({
4362659f
imports: [BootstrapComponent] })
248ac3a3
.compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(BootstrapComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });