aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/app/todo-list.service.spec.ts
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2019-02-18 00:11:24 +0800
committercrupest <crupest@outlook.com>2019-02-18 00:11:24 +0800
commit633e7357b41b5b3e99df887215bed620034eda6a (patch)
treecae8958b853ee87a885d2a8e73e8df78220e2cf6 /Timeline/ClientApp/src/app/todo-list.service.spec.ts
parent122a28595e45c6ec48a773ca1284238566d497d3 (diff)
downloadtimeline-633e7357b41b5b3e99df887215bed620034eda6a.tar.gz
timeline-633e7357b41b5b3e99df887215bed620034eda6a.tar.bz2
timeline-633e7357b41b5b3e99df887215bed620034eda6a.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.ts12
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();
+ });
+});