From 2323e2a67a11c4f5c562dbac63f3f2037602bb19 Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Wed, 19 Mar 2014 18:10:04 -0300 Subject: [PATCH] fix skipped Opcode test --- test/test.Opcode.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/test.Opcode.js b/test/test.Opcode.js index 4c9a5e9..235f26c 100644 --- a/test/test.Opcode.js +++ b/test/test.Opcode.js @@ -20,12 +20,10 @@ describe('Opcode', function() { var oc = new Opcode(); should.exist(oc); }); - it.skip('should be able to create some constants', function() { + it('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);