diff options
author | crupest <crupest@outlook.com> | 2019-02-21 23:36:41 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-02-21 23:36:41 +0800 |
commit | b694d7a3e1b04bb942e5ba8224762d706f98a371 (patch) | |
tree | ce0cd6249f2c09797bca65cfb9dbc81f6c334d2e /Timeline/ClientApp/src/app/home/home.component.spec.ts | |
parent | 0ed96f534f75ebc2a7bdbec031a4674368d0420a (diff) | |
download | timeline-b694d7a3e1b04bb942e5ba8224762d706f98a371.tar.gz timeline-b694d7a3e1b04bb942e5ba8224762d706f98a371.tar.bz2 timeline-b694d7a3e1b04bb942e5ba8224762d706f98a371.zip |
Add unit test.
Diffstat (limited to 'Timeline/ClientApp/src/app/home/home.component.spec.ts')
-rw-r--r-- | Timeline/ClientApp/src/app/home/home.component.spec.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Timeline/ClientApp/src/app/home/home.component.spec.ts b/Timeline/ClientApp/src/app/home/home.component.spec.ts index 490e81bd..74bedd08 100644 --- a/Timeline/ClientApp/src/app/home/home.component.spec.ts +++ b/Timeline/ClientApp/src/app/home/home.component.spec.ts @@ -2,15 +2,16 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { HomeComponent } from './home.component'; + describe('HomeComponent', () => { let component: HomeComponent; let fixture: ComponentFixture<HomeComponent>; beforeEach(async(() => { TestBed.configureTestingModule({ - declarations: [ HomeComponent ] + declarations: [HomeComponent], }) - .compileComponents(); + .compileComponents(); })); beforeEach(() => { |