1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/tests/testdata/lock_write_fetch.ts
2022-05-18 22:00:11 +02:00

52 lines
1 KiB
TypeScript

try {
Deno.removeSync("./lock_write_fetch.json");
} catch {
// pass
}
const fetchProc = await Deno.spawn(Deno.execPath(), {
stdout: "null",
stderr: "null",
args: [
"cache",
"--reload",
"--lock=lock_write_fetch.json",
"--lock-write",
"--cert=tls/RootCA.pem",
"https_import.ts",
],
});
console.log(`fetch code: ${fetchProc.status.code}`);
const fetchCheckProc = await Deno.spawn(Deno.execPath(), {
stdout: "null",
stderr: "null",
args: [
"cache",
"--lock=lock_write_fetch.json",
"--cert=tls/RootCA.pem",
"https_import.ts",
],
});
console.log(`fetch check code: ${fetchCheckProc.status.code}`);
Deno.removeSync("./lock_write_fetch.json");
const runProc = await Deno.spawn(Deno.execPath(), {
stdout: "null",
stderr: "null",
args: [
"run",
"--lock=lock_write_fetch.json",
"--lock-write",
"--allow-read",
"file_exists.ts",
"lock_write_fetch.json",
],
});
console.log(`run code: ${runProc.status.code}`);
Deno.removeSync("./lock_write_fetch.json");