mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-07-17 17:54:37 -04:00
11 lines
271 B
JavaScript
11 lines
271 B
JavaScript
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();
|
|
});
|