scratch0-5 / tests /tests.js
soiz1's picture
Upload folder using huggingface_hub
8f3f8db verified
raw
history blame contribute delete
551 Bytes
__karma__.start = function() {
var canvas = document.createElement('canvas');
canvas.width = 800;
canvas.height = 600;
canvas.style.backgroundColor = 'black';
document.body.appendChild(canvas);
SqueakJS.runSqueak(null, canvas, {
appName: 'SqueakJS Tests',
url: 'base/tests/resources/',
files: ['test.image', 'test.changes', 'SqueakV50.sources', 'tests.ston'],
document: 'tests.st',
forceDownload: true,
onQuit: function() {
__karma__.complete();
},
});
};