mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 06:23:37 -05: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();
|
|
});
|