From 5353c1757b81b4da5b023a2be510d29201f999a6 Mon Sep 17 00:00:00 2001 From: Bharath S <36472845+bharathks005@users.noreply.github.com> Date: Mon, 6 Dec 2021 11:19:44 +0530 Subject: [PATCH] Update mongodb_document_store_spec.js removed unwanted codes --- test/mongodb_document_store_spec.js | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/test/mongodb_document_store_spec.js b/test/mongodb_document_store_spec.js index 48c8dca..ed74f5c 100644 --- a/test/mongodb_document_store_spec.js +++ b/test/mongodb_document_store_spec.js @@ -15,27 +15,4 @@ describe('mongodb_document_store', () => { }); }) }); - - // it('should create new task', () => { - // return service.addTask({ name: 'next', completed: false }) - // .then(task => { - // expect(task.name).to.equal('next') - // expect(task.completed).to.equal(false) - // }) - // .then(() => service.getTasks()) - // .then(tasks => { - // expect(tasks.length).to.equal(2) - // expect(tasks[1].name).to.equal('next') - // }) - // }) - - // it('should remove task', () => { - // return service.getTasks() - // .then(tasks => tasks[0]._id) - // .then(taskId => service.deleteTask(taskId)) - // .then(() => service.getTasks()) - // .then(tasks => { - // expect(tasks.length).to.equal(0) - // }) - // }) -}) \ No newline at end of file +})