diff options
author | crupest <crupest@outlook.com> | 2019-02-20 00:12:18 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-02-20 00:12:18 +0800 |
commit | 133b90cdbafabab0640bfb3179899fb4f3df4dbe (patch) | |
tree | 70160b1387e11e4b236994797842e60c1fbd687f /Timeline/ClientApp/src/app/todo-list-page/todo-list.service.spec.ts | |
parent | 1ff6afb0e9fd11ce37ed0206b992514041391761 (diff) | |
download | timeline-133b90cdbafabab0640bfb3179899fb4f3df4dbe.tar.gz timeline-133b90cdbafabab0640bfb3179899fb4f3df4dbe.tar.bz2 timeline-133b90cdbafabab0640bfb3179899fb4f3df4dbe.zip |
Add sample on todo page.
Diffstat (limited to 'Timeline/ClientApp/src/app/todo-list-page/todo-list.service.spec.ts')
-rw-r--r-- | Timeline/ClientApp/src/app/todo-list-page/todo-list.service.spec.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Timeline/ClientApp/src/app/todo-list-page/todo-list.service.spec.ts b/Timeline/ClientApp/src/app/todo-list-page/todo-list.service.spec.ts new file mode 100644 index 00000000..529ba8cc --- /dev/null +++ b/Timeline/ClientApp/src/app/todo-list-page/todo-list.service.spec.ts @@ -0,0 +1,12 @@ +import { TestBed } from '@angular/core/testing'; + +import { TodoListService } from './todo-list.service'; + +describe('TodoListServiceService', () => { + beforeEach(() => TestBed.configureTestingModule({})); + + it('should be created', () => { + const service: TodoListService = TestBed.get(TodoListService); + expect(service).toBeTruthy(); + }); +}); |