1 2 3 4 5 6 7 8
// ensure the cwd is this directory const cwd = Deno.cwd(); if (!cwd.endsWith("code")) { console.log(cwd); throw "FAIL"; } else { console.log("success"); }