From f14c0fa5d6c17386b8b0e7c370727aadffcbf06d Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Mon, 26 Jan 2015 17:00:19 +1100 Subject: [PATCH] turn off failed test writes --- test/_transformation-helper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/_transformation-helper.js b/test/_transformation-helper.js index 587952b5da..fc2cf58f20 100644 --- a/test/_transformation-helper.js +++ b/test/_transformation-helper.js @@ -100,7 +100,7 @@ var run = function (task, done) { try { chai.expect(actualCode).to.be.equal(expectCode, actual.loc + " !== " + expect.loc); } catch (err) { - require("fs").writeFileSync(expect.loc, actualCode); + //require("fs").writeFileSync(expect.loc, actualCode); throw err; } }