Revert "fix node/node-*tests.ts"

This reverts commit 87a47f0edd.
This commit is contained in:
vvakame
2016-02-23 11:58:54 +09:00
parent 386562f165
commit f273c4b9ca
3 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,7 @@ assert.notStrictEqual(2, "2", "uses === comparator");
assert.throws(() => { throw "a hammer at your face"; }, undefined, "DODGED IT");
assert.doesNotThrow(() => {
if (Math.random() < 0.5) { throw "a hammer at your face"; }
if (false) { throw "a hammer at your face"; }
}, undefined, "What the...*crunch*");
////////////////////////////////////////////////////

View File

@@ -26,7 +26,7 @@ assert.notStrictEqual(2, "2", "uses === comparator");
assert.throws(() => { throw "a hammer at your face"; }, undefined, "DODGED IT");
assert.doesNotThrow(() => {
if (Math.random() < 0.5) { throw "a hammer at your face"; }
if (false) { throw "a hammer at your face"; }
}, undefined, "What the...*crunch*");
////////////////////////////////////////////////////

View File

@@ -32,7 +32,7 @@ assert.notDeepStrictEqual({ x: { y: "3" } }, { x: { y: 3 } }, "uses === comparat
assert.throws(() => { throw "a hammer at your face"; }, undefined, "DODGED IT");
assert.doesNotThrow(() => {
if (Math.random() < 0.5) { throw "a hammer at your face"; }
if (false) { throw "a hammer at your face"; }
}, undefined, "What the...*crunch*");
////////////////////////////////////////////////////