From a8dae99173e806235ed19b9f4794c61e3c68b2ef Mon Sep 17 00:00:00 2001 From: "Cody B. Daig" Date: Mon, 20 Jul 2015 10:04:45 -0700 Subject: [PATCH] Remove console.log from an article test --- modules/articles/tests/server/article.server.routes.tests.js | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/articles/tests/server/article.server.routes.tests.js b/modules/articles/tests/server/article.server.routes.tests.js index de27b640f6..7f9baeabf4 100644 --- a/modules/articles/tests/server/article.server.routes.tests.js +++ b/modules/articles/tests/server/article.server.routes.tests.js @@ -226,7 +226,6 @@ describe('Article CRUD tests', function () { it('should return proper error for single article which doesnt exist, if not signed in', function (done) { request(app).get('/api/articles/test') .end(function (req, res) { - console.log(res.body); // Set assertion res.body.should.be.instanceof(Object).and.have.property('message', 'Article is invalid');