summaryrefslogtreecommitdiff
path: root/tests/specs/run/no_deno_json/code/noconfig.ts
blob: e6f77f92b756454d5d72b18c20127b38794ac29d (plain)
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");
}