Skip to content

Commit

Permalink
[FIX] [TEST] undid the removal of the lint, because if we don't wait …
Browse files Browse the repository at this point in the history
…for the output promise, deno complains of resources open
  • Loading branch information
aricart committed Jan 12, 2023
1 parent 1753fbd commit eba4e66
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/service_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -754,8 +754,9 @@ Deno.test("service - cross platform service test", async () => {
];

const p = Deno.run({ cmd: args, stderr: "piped", stdout: "piped" });
const [status, stderr] = await Promise.all([
const [status, _stdout, stderr] = await Promise.all([
p.status(),
p.output(),
p.stderrOutput(),
]);

Expand Down

0 comments on commit eba4e66

Please sign in to comment.