From ab81de3c7953e75c013eb02f89115ea56eaf3b4a Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Mon, 17 Feb 2014 17:18:07 -0300 Subject: [PATCH] skipped problematic testcase --- test/test.Opcode.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test.Opcode.js b/test/test.Opcode.js index 4d6336b..fa78f5e 100644 --- a/test/test.Opcode.js +++ b/test/test.Opcode.js @@ -21,9 +21,11 @@ describe('Opcode', function() { should.exist(oc); }); it.skip('should be able to create some constants', function() { + // TODO: test works in node but not in browser for (var i in Opcode.map) { console.log('var '+i + ' = ' + Opcode.map[i] + ';'); eval('var '+i + ' = ' + Opcode.map[i] + ';'); + console.log(eval(i)); } should.exist(OP_VER); should.exist(OP_HASH160);