diff options
author | crupest <crupest@outlook.com> | 2019-02-15 16:08:08 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-02-15 16:08:08 +0800 |
commit | f867fb7fed885c474dda18e9a9ca7b1d64c9407f (patch) | |
tree | 9d09e39c6463c332eddb0549974db53a1d4f80fa /Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.spec.ts | |
parent | 3c140656ebe6ed34dda9356a01dbff205651e641 (diff) | |
download | timeline-f867fb7fed885c474dda18e9a9ca7b1d64c9407f.tar.gz timeline-f867fb7fed885c474dda18e9a9ca7b1d64c9407f.tar.bz2 timeline-f867fb7fed885c474dda18e9a9ca7b1d64c9407f.zip |
Develop front end.
Diffstat (limited to 'Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.spec.ts')
-rw-r--r-- | Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.spec.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.spec.ts b/Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.spec.ts new file mode 100644 index 00000000..a74ce3e6 --- /dev/null +++ b/Timeline/ClientApp/src/app/todo-list-page/todo-list-page.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { TodoListPageComponent } from './todo-list-page.component'; + +describe('TodoListPageComponent', () => { + let component: TodoListPageComponent; + let fixture: ComponentFixture<TodoListPageComponent>; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ TodoListPageComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(TodoListPageComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); |