Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
Merge pull request #36 from slindberg/remove-lint-friendly-chai-test
Browse files Browse the repository at this point in the history
Removed lint-friendly assertion from jshint test generator
  • Loading branch information
dgeb committed Feb 16, 2015
2 parents 18c374d + c599946 commit 81223f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}

0 comments on commit 81223f3

Please sign in to comment.