diff options
Diffstat (limited to 'tests/js/accretion.mjs')
-rw-r--r-- | tests/js/accretion.mjs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/js/accretion.mjs b/tests/js/accretion.mjs index 14c86d3..c6ec4b2 100644 --- a/tests/js/accretion.mjs +++ b/tests/js/accretion.mjs @@ -12,10 +12,10 @@ import { } from "../../src/accretion.mjs"; -const test_runMigrations = t => { +const test_runMigrations = async t => { t.start("runMigrations()"); - t.test("running twice is a noop", async () => { + await t.test("running twice is a noop", async () => { const contents = []; const logFn = x => contents.push(x); const handle = await db.open(":memory:"); |