2017-04-20 19:17:05 -04:00
|
|
|
const test = require('tap').test;
|
|
|
|
const VirtualMachine = require('../../src/index');
|
2016-12-23 10:39:19 -05:00
|
|
|
|
2017-04-20 19:17:05 -04:00
|
|
|
test('interface', t => {
|
|
|
|
const vm = new VirtualMachine();
|
2016-12-23 10:39:19 -05:00
|
|
|
t.type(vm, 'object');
|
|
|
|
t.type(vm.start, 'function');
|
|
|
|
t.type(vm.greenFlag, 'function');
|
|
|
|
t.type(vm.setTurboMode, 'function');
|
|
|
|
t.type(vm.setCompatibilityMode, 'function');
|
|
|
|
t.type(vm.stopAll, 'function');
|
|
|
|
t.type(vm.clear, 'function');
|
|
|
|
|
|
|
|
t.type(vm.getPlaygroundData, 'function');
|
|
|
|
t.type(vm.postIOData, 'function');
|
|
|
|
|
|
|
|
t.type(vm.loadProject, 'function');
|
|
|
|
t.type(vm.addSprite2, 'function');
|
|
|
|
t.type(vm.addCostume, 'function');
|
|
|
|
t.type(vm.addBackdrop, 'function');
|
2017-04-03 09:33:23 -04:00
|
|
|
t.type(vm.addSound, 'function');
|
2016-12-23 10:39:19 -05:00
|
|
|
t.type(vm.renameSprite, 'function');
|
|
|
|
t.type(vm.deleteSprite, 'function');
|
|
|
|
|
|
|
|
t.type(vm.attachRenderer, 'function');
|
|
|
|
t.type(vm.blockListener, 'function');
|
|
|
|
t.type(vm.flyoutBlockListener, 'function');
|
|
|
|
t.type(vm.setEditingTarget, 'function');
|
|
|
|
|
|
|
|
t.type(vm.emitTargetsUpdate, 'function');
|
|
|
|
t.type(vm.emitWorkspaceUpdate, 'function');
|
|
|
|
t.type(vm.postSpriteInfo, 'function');
|
|
|
|
t.end();
|
|
|
|
});
|