scratch-vm/test/integration/looks.js

39 lines
1.1 KiB
JavaScript
Raw Normal View History

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