Toggle navigation
P3X GitList Snapshot
GitHub
Repo
Changelog
To do
Releases
Themes
Change log
Loading change log ...
To do ...
Loading todo ...
browsing:
5dae5b699cd999d3cdc13420c7fb61a5ca69ce32
Branches
master
Tags
1.1.129-287
1.1.113-149
1.1.108-143
1.1.95-138
1.1.92-119
1.0.35-18
1.0.13-14
Files
Commits
Log
Graph
Stats
angular-compile.git
test
angular-karma
CompileModule.ts
RSS
Git
Fetch origin
Download
ZIP
TAR
Clone
Raw
View
History
Clone
SSH
HTTPS
Blames found: 12
Mode: application/typescript
Binary: false
Hang on, we reloading big blames...
f46e4d96
// you need unlinked npm-s!!! import { TestBed } from '@angular/core/testing'; import { inject } from '@angular/core/testing';
c605ea6f
import { CommonModule } from '@angular/common'; import { BrowserModule } from '@angular/platform-browser'; import {CompileAttribute } from '../../src/CompileAttribute' describe('CompileModule', () => { let attribute: CompileAttribute;
f46e4d96
beforeEach(() => { TestBed.configureTestingModule({ imports: [
c605ea6f
CommonModule, BrowserModule
f46e4d96
], declarations: [ CompileAttribute ], providers: [
c605ea6f
f46e4d96
], }); });
c605ea6f
/* beforeEach(inject([CompileAttribute], (_attribute: CompileAttribute) => { attribute = _attribute;
f46e4d96
}));
c605ea6f
*/ it ('CompileAttribute', (/*done*/) => {
52297b81
// expect(service instanceof CompileService).toBeTruthy();
f46e4d96
/* setTimeout(()=> { console.log('done later'); done(); }, 1000); */ }); });