diff --git a/test/index.js b/test/index.js index ea34f27..112dc78 100644 --- a/test/index.js +++ b/test/index.js @@ -57,6 +57,7 @@ describe('metalsmith-matters', function(){ it('should set the parser used for frontmatter', function(done) { Metalsmith('test/fixtures/parser-option') .frontmatter(false) + /* jshint evil:true */ .use(frontmatter({parser: function(str) { return eval(str); }})) .build(function(err, files){ if (err) return done(err);