diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-01-31 17:34:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-31 17:34:50 +0100 |
commit | e1697421e2c00508cd78976b6ec586e056530c30 (patch) | |
tree | f7d2a8501bfb91cbf2453784895a46d5e3737381 /std/installer/testdata | |
parent | c7a2a33ea1a3245bfc1b9af1db2282ef8e3f7ab3 (diff) |
chore: remove std/installer, port installer tests to Rust (#3843)
Diffstat (limited to 'std/installer/testdata')
-rw-r--r-- | std/installer/testdata/args.ts | 9 | ||||
-rw-r--r-- | std/installer/testdata/echo.ts | 6 |
2 files changed, 0 insertions, 15 deletions
diff --git a/std/installer/testdata/args.ts b/std/installer/testdata/args.ts deleted file mode 100644 index 1c0ec0687..000000000 --- a/std/installer/testdata/args.ts +++ /dev/null @@ -1,9 +0,0 @@ -function args(args: string[]) { - const map = {}; - for (let i = 0; i < args.length; i++) { - map[i] = args[i]; - } - Deno.stdout.write(new TextEncoder().encode(JSON.stringify(map))); -} - -args(Deno.args); diff --git a/std/installer/testdata/echo.ts b/std/installer/testdata/echo.ts deleted file mode 100644 index 84a645433..000000000 --- a/std/installer/testdata/echo.ts +++ /dev/null @@ -1,6 +0,0 @@ -function echo(args: string[]) { - const msg = args.join(", "); - Deno.stdout.write(new TextEncoder().encode(msg)); -} - -echo(Deno.args); |