spec as a module

though imports still aren't working right :P
This commit is contained in:
Jack Case
2025-12-10 00:19:55 +00:00
parent 4d4a91cf66
commit 2631f46d67
2 changed files with 21 additions and 5 deletions

21
spec/indexeddb_spec.mjs Normal file
View File

@@ -0,0 +1,21 @@
describe("IndexedDB Abstractions", function () {
beforeAll(async function () {
try {
const mod = await import("../scripts/indexed-db.js")
SlopDB = mod.SlopDB
} catch (err) {
it("works?", function () {
fail(err)
})
}
})
it("lol", function() {
expect(false).toBeTrue()
})
})