Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Apr 28, 2023
1 parent c0b2d09 commit 0efdd67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/core/scripts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Deno.test("Scripts", async (t) => {
scripts.set("my-fn", () => "foo");

equals(scripts.scripts.size, 4);
const result = await scripts.run({}, "my-fn");
const result = await scripts.run("my-fn");
equals(result, true);
});

Expand Down

0 comments on commit 0efdd67

Please sign in to comment.