1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2026-04-20 15:16:38 +00:00

worker: use imports instead of require()

This commit is contained in:
Steven Hugg
2021-07-27 11:26:49 -05:00
parent f3bf1602d5
commit 29f0238b90
4 changed files with 20 additions and 6 deletions
+10
View File
@@ -40,6 +40,7 @@ var _sms = require('gen/platform/sms.js');
var _c64 = require('gen/platform/c64.js');
var _vectrex = require('gen/platform/vectrex.js');
var _zx = require('gen/platform/zx.js');
var _atari8 = require('gen/platform/atari8.js');
//
@@ -360,4 +361,13 @@ describe('Platform Replay', () => {
}
});
});
/*
it('Should run atari 800xl', async () => {
await testPlatform('atari8-800xl', 'siegegame.bin', 92, (platform, frameno) => {
if (frameno == 62) {
keycallback(Keys.VK_DOWN.c, Keys.VK_DOWN.c, 1);
}
});
});
*/
});