From c5999467b2092955029ed9e564941c1f928da976 Mon Sep 17 00:00:00 2001 From: Steven Lindberg Date: Fri, 6 Feb 2015 15:30:46 -0800 Subject: [PATCH] Removed lint-friendly assertion from jshint test generator --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 6130606..2b84b12 100644 --- a/index.js +++ b/index.js @@ -105,6 +105,6 @@ function testGenerator(relativePath, passed, errors) { return "describe('JSHint - " + relativePath + "', function(){\n" + "it('should pass jshint', function() { \n" + - " expect(" + !!passed + ", '" + relativePath + " should pass jshint." + errors + "').to.be.ok(); \n" + + " expect(" + !!passed + ", '" + relativePath + " should pass jshint." + errors + "').to.be.ok; \n" + "})});\n"; }