diff --git a/tests/chapter.ts b/tests/chapter.ts index a3c7d60..78df36d 100644 --- a/tests/chapter.ts +++ b/tests/chapter.ts @@ -2,7 +2,7 @@ import AO3 from "../mod.ts"; import { assert } from "https://deno.land/std@0.167.0/testing/asserts.ts"; -export default async function test(ao3: AO3) { +export default function test(ao3: AO3) { Deno.test("chapters", async (test) => { const work = await ao3.getWork("43251729"); await work.init(); diff --git a/tests/work.ts b/tests/work.ts index 63080fb..f797ae0 100644 --- a/tests/work.ts +++ b/tests/work.ts @@ -2,7 +2,7 @@ import AO3 from "../mod.ts"; import type { Work } from "../mod.ts"; import { assert } from "https://deno.land/std@0.167.0/testing/asserts.ts"; -export default async function test(ao3: AO3) { +export default function test(ao3: AO3) { Deno.test("works", async (test) => { let work: Work; await test.step("initialization", async () => {