blob: a2312e3acf720c54d03c2d790b12080e44e49f46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
const name = Deno.args[0];
// deno-lint-ignore no-explicit-any
const test: { [key: string]: (...args: any[]) => void | Promise<void> } = {
readRequired() {
Deno.readFileSync("assets/hello.txt");
return Promise.resolve();
},
writeRequired() {
Deno.makeTempDirSync();
},
envRequired() {
Deno.env.get("home");
},
netRequired() {
Deno.listen({ transport: "tcp", port: 4541 });
},
async runRequired() {
await new Deno.Command(Deno.build.os === "windows" ? "cmd.exe" : "printf", {
args: Deno.build.os === "windows" ? ["/c", "echo hello"] : ["hello"],
}).output();
},
};
if (!test[name]) {
console.log("Unknown test:", name);
Deno.exit(1);
}
test[name]();
|