summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/test.ts b/examples/test.ts
index 17d19a312..8158763be 100644
--- a/examples/test.ts
+++ b/examples/test.ts
@@ -15,7 +15,7 @@ test(function t2(): void {
/** A more complicated test that runs a subprocess. */
test(async function catSmoke(): Promise<void> {
const p = run({
- args: ["deno", "--allow-read", "examples/cat.ts", "README.md"],
+ args: ["deno", "run", "--allow-read", "examples/cat.ts", "README.md"],
stdout: "piped"
});
const s = await p.status();