Merge pull request #673 from codydaig/bugfix/consolelog

Remove console.log from an article test
This commit is contained in:
Liran Tal
2015-07-20 21:25:13 +03:00

View File

@@ -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');