From b5769f429c32a030cfeb19902eda6bb3525a1299 Mon Sep 17 00:00:00 2001 From: gaba Date: Tue, 8 Nov 2016 16:01:57 -0800 Subject: [PATCH] One test to do. --- tests/models/comment.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tests/models/comment.js b/tests/models/comment.js index e46345e39..d76277d6e 100644 --- a/tests/models/comment.js +++ b/tests/models/comment.js @@ -113,11 +113,6 @@ describe('Comment: models', () => { expect(result[0]).to.have.property('body', 'comment 30'); }); }); - it('should fail when the moderation is not pre or post', () => { - return Comment.moderationQueue('any').then((error, result) => { - expect(error).to.not.be.null; - expect(result).to.be.null; - }); - }); + it('should fail when the moderation is not pre or post'); }); });