summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2019-05-04 17:33:50 +0200
committerRyan Dahl <ry@tinyclouds.org>2019-05-04 11:33:50 -0400
commit02bd7e956ec691076f597085bdfcc82afa8292cd (patch)
treea32ff4d7a642457d0734fa6b88f0a8b35f91eed7 /examples
parent2f14376f604fec4b7a4bded11c9f0578bad39a6b (diff)
bump CI to v0.4.0 (denoland/deno_std#378)
Original: https://github.com/denoland/deno_std/commit/2ad643d29690f6390c250f55e993727ae8e1ba54
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();