diff options
author | crupest <crupest@outlook.com> | 2019-02-18 00:11:24 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-02-18 00:11:24 +0800 |
commit | 5194cfc3fc9bbe6d2e03fdceb4ed58a8b7c0f6a9 (patch) | |
tree | c0269613f78380f202be80718c247d7e7a31bfa2 /Timeline/ClientApp/src/app/todo-list.service.spec.ts | |
parent | 94d9233375f3c8bedcf4dbc62e59f20969af7cb9 (diff) | |
download | timeline-5194cfc3fc9bbe6d2e03fdceb4ed58a8b7c0f6a9.tar.gz timeline-5194cfc3fc9bbe6d2e03fdceb4ed58a8b7c0f6a9.tar.bz2 timeline-5194cfc3fc9bbe6d2e03fdceb4ed58a8b7c0f6a9.zip |
Add todo list request service.
Diffstat (limited to 'Timeline/ClientApp/src/app/todo-list.service.spec.ts')
-rw-r--r-- | Timeline/ClientApp/src/app/todo-list.service.spec.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Timeline/ClientApp/src/app/todo-list.service.spec.ts b/Timeline/ClientApp/src/app/todo-list.service.spec.ts new file mode 100644 index 00000000..529ba8cc --- /dev/null +++ b/Timeline/ClientApp/src/app/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(); + }); +}); |