All tests passing

This commit is contained in:
Andrew Sliwinski 2016-04-26 09:54:14 -04:00
parent 981b85e78f
commit 389d112729
10 changed files with 10 additions and 27 deletions
test/unit

View file

@ -1,11 +0,0 @@
var test = require('tap').test;
var VirtualMachine = require('../../src/index');
test('spec', function (t) {
var vm = new VirtualMachine();
t.type(VirtualMachine, 'function');
t.type(vm, 'object');
t.type(vm.blockListener, 'function');
t.end();
});