Skip to content
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
  • Loading branch information
harrysolovay committed Mar 1, 2023
1 parent 8b698a3 commit b292268
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions _tasks/test_examples.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,11 @@ Deno.test("examples", async (t) => {
return t.step({
name: name,
async fn() {
const command = new Deno.Command(
Deno.execPath(),
{
args: ["run", "-A", "-r=http://localhost:4646/", `${dir}/${name}`],
stdout: "piped",
stderr: "piped",
},
)
const command = new Deno.Command(Deno.execPath(), {
args: ["run", "-A", "-r=http://localhost:4646/", `${dir}/${name}`],
stdout: "piped",
stderr: "piped",
})
const task = command.spawn()
const out = new Buffer()
await Promise.all([
Expand Down

0 comments on commit b292268

Please sign in to comment.