scratch-vm/test/integration/hat-execution-order.js

43 lines
1.2 KiB
JavaScript
Raw Normal View History

const path = require('path');
const test = require('tap').test;
const attachTestStorage = require('../fixtures/attach-test-storage');
const extract = require('../fixtures/extract');
const VirtualMachine = require('../../src/index');
2017-02-14 19:33:42 -05:00
const projectUri = path.resolve(__dirname, '../fixtures/hat-execution-order.sb2');
const project = extract(projectUri);
2017-02-14 19:33:42 -05:00
test('complex', t => {
const vm = new VirtualMachine();
attachTestStorage(vm);
2017-02-14 19:33:42 -05:00
// Evaluate playground data and exit
vm.on('playgroundData', e => {
const threads = JSON.parse(e.threads);
2017-02-14 19:33:42 -05:00
t.ok(threads.length === 0);
const results = vm.runtime.targets[0].lists.results.contents;
2017-02-14 19:33:42 -05:00
t.deepEqual(results, ['3', '2', '1', 'stage']);
t.end();
process.nextTick(process.exit);
});
// Start VM, load project, and run
t.doesNotThrow(() => {
2017-02-14 19:33:42 -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-02-14 19:33:42 -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-02-14 19:33:42 -05:00
});