From 39b9c9973561fbf01cd9db2d611d130d9a27fb63 Mon Sep 17 00:00:00 2001 From: Henry Oswald Date: Wed, 16 Apr 2014 17:51:40 +0100 Subject: [PATCH] fix unit tests I broke by adding timeout to tags --- .../test/UnitTests/coffee/Tags/TagsHandlerTests.coffee | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/services/web/test/UnitTests/coffee/Tags/TagsHandlerTests.coffee b/services/web/test/UnitTests/coffee/Tags/TagsHandlerTests.coffee index be3559af9d..2ed50bfec2 100644 --- a/services/web/test/UnitTests/coffee/Tags/TagsHandlerTests.coffee +++ b/services/web/test/UnitTests/coffee/Tags/TagsHandlerTests.coffee @@ -6,7 +6,7 @@ modulePath = require('path').join __dirname, '../../../../app/js/Features/Tags/T _ = require('underscore') -describe 'Tags handler', -> +describe 'TagsHandler', -> user_id = "123nd3ijdks" project_id = "123njdskj9jlk" tagsUrl = "tags.sharelatex.testing" @@ -26,17 +26,17 @@ describe 'Tags handler', -> it 'Should post the request to the tags api with the user id in the url', (done)-> @handler.addTag user_id, project_id, tag, => - @request.post.calledWith({uri:"#{tagsUrl}/user/#{user_id}/project/#{project_id}/tag", json:{name:tag}}).should.equal true + @request.post.calledWith({uri:"#{tagsUrl}/user/#{user_id}/project/#{project_id}/tag", timeout:1000, json:{name:tag}}).should.equal true done() it 'should send a delete request when a delete has been recived with the body format standardised', (done)-> @handler.deleteTag user_id, project_id, tag, => - @request.del.calledWith({uri:"#{tagsUrl}/user/#{user_id}/project/#{project_id}/tag", json:{name:tag}}).should.equal true + @request.del.calledWith({uri:"#{tagsUrl}/user/#{user_id}/project/#{project_id}/tag", timeout:1000, json:{name:tag}}).should.equal true done() it 'should tell the tags api to remove the project_id from all the users tags', (done)-> @handler.removeProjectFromAllTags user_id, project_id, => - @request.del.calledWith({uri:"#{tagsUrl}/user/#{user_id}/project/#{project_id}"}).should.equal true + @request.del.calledWith({uri:"#{tagsUrl}/user/#{user_id}/project/#{project_id}", timeout:1000}).should.equal true done() describe "groupTagsByProject", ->