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

fixed tests, removed listings from parseCA65Listing

This commit is contained in:
Steven Hugg
2022-06-22 12:22:47 -05:00
parent 0fc860f524
commit b284fc694d
4 changed files with 9 additions and 8 deletions
+2 -2
View File
@@ -196,9 +196,9 @@ async function testPlatform(platid, romname, maxframes, callback) {
assert.equal(clks, proberec.countClocks());
}
// debug tree
if (platform.getDebugTree) {
if (platform.getDebugTree != null) {
var dbgtree = platform.getDebugTree();
JSON.stringify(dbgtree);
if (dbgtree != null) JSON.stringify(dbgtree);
}
// misc
assert.ok(platform.getDefaultExtension().startsWith('.'));