scratch-vm/test/integration/index.js

28 lines
461 B
JavaScript
Raw Normal View History

var test = require('tap').test;
var VirtualMachine = require('../../src/index');
test('spec', function (t) {
2016-04-26 09:54:14 -04:00
var vm = new VirtualMachine();
t.type(VirtualMachine, 'function');
t.type(vm, 'object');
t.type(vm.blockListener, 'function');
t.end();
});
test('create', function (t) {
t.end();
});
test('move', function (t) {
t.end();
});
test('change', function (t) {
t.end();
});
test('delete', function (t) {
t.end();
});