Skip to content

Commit

Permalink
ffffffffffffffffffff
Browse files Browse the repository at this point in the history
  • Loading branch information
gnlow committed Dec 4, 2023
1 parent 49ca398 commit 1d47549
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ console.log(
await app.request("/src/mod.ts")
)

const build = (filename: string) => {
const build = async (filename: string) => {
const res = await app.request(filename)
assertEquals(
res.status,
Expand All @@ -15,9 +15,9 @@ const build = (filename: string) => {
}

Deno.test("build", async () => {
build("/src/Entry.ts")
build("/src/EntrySprite.ts")
build("/src/mod.ts")
build("/src/Timer.ts")
build("/src/util.ts")
await build("/src/Entry.ts")
await build("/src/EntrySprite.ts")
await build("/src/mod.ts")
await build("/src/Timer.ts")
await build("/src/util.ts")
})

0 comments on commit 1d47549

Please sign in to comment.