mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 06:23:37 -05:00
058685f41e
for webpack 5 compatibility
37 lines
1.2 KiB
JavaScript
37 lines
1.2 KiB
JavaScript
const Worker = require('web-worker');
|
|
const path = require('path');
|
|
const test = require('tap').test;
|
|
const makeTestStorage = require('../fixtures/make-test-storage');
|
|
const readFileToBuffer = require('../fixtures/readProjectFile').readFileToBuffer;
|
|
const VirtualMachine = require('../../src/index');
|
|
const dispatch = require('../../src/dispatch/central-dispatch');
|
|
|
|
const uri = path.resolve(__dirname, '../fixtures/saythink-and-wait.sb2');
|
|
const project = readFileToBuffer(uri);
|
|
|
|
// By default Central Dispatch works with the Worker class built into the browser. Tell it to use TinyWorker instead.
|
|
dispatch.workerClass = Worker;
|
|
|
|
test('say/think and wait', t => {
|
|
const vm = new VirtualMachine();
|
|
vm.attachStorage(makeTestStorage());
|
|
|
|
// Start VM, load project, and run
|
|
t.doesNotThrow(() => {
|
|
vm.start();
|
|
vm.clear();
|
|
vm.setCompatibilityMode(false);
|
|
vm.setTurboMode(false);
|
|
vm.loadProject(project).then(() => {
|
|
vm.greenFlag();
|
|
|
|
// After two seconds, stop the project.
|
|
// The test will fail if the project throws.
|
|
setTimeout(() => {
|
|
vm.stopAll();
|
|
vm.quit();
|
|
t.end();
|
|
}, 2000);
|
|
});
|
|
});
|
|
});
|