scratch-vm/test/integration/sensing.js

39 lines
1.1 KiB
JavaScript
Raw Normal View History

const path = require('path');
const test = require('tap').test;
const makeTestStorage = require('../fixtures/make-test-storage');
const extract = require('../fixtures/extract');
const VirtualMachine = require('../../src/index');
2017-01-05 16:58:31 -05:00
const uri = path.resolve(__dirname, '../fixtures/sensing.sb2');
const project = extract(uri);
2017-01-05 16:58:31 -05:00
test('sensing', t => {
const vm = new VirtualMachine();
vm.attachStorage(makeTestStorage());
2017-01-05 16:58:31 -05:00
// Evaluate playground data and exit
vm.on('playgroundData', e => {
const threads = JSON.parse(e.threads);
2017-01-05 16:58:31 -05:00
t.ok(threads.length > 0);
t.end();
process.nextTick(process.exit);
});
// Start VM, load project, and run
t.doesNotThrow(() => {
2017-01-05 16:58:31 -05:00
vm.start();
vm.clear();
vm.setCompatibilityMode(false);
vm.setTurboMode(false);
vm.loadProject(project).then(() => {
2017-04-18 11:55:38 -04:00
vm.greenFlag();
2017-01-05 16:58:31 -05:00
2017-04-18 11:55:38 -04:00
// After two seconds, get playground data and stop
setTimeout(() => {
2017-04-18 11:55:38 -04:00
vm.getPlaygroundData();
vm.stopAll();
}, 2000);
});
});
2017-01-05 16:58:31 -05:00
});