deno/tests/fetch_deps.ts
Ryan Dahl 4f62a56f90
Move testing module to deno_std (#1451)
Upgrades deno_std submodule.
2019-01-03 14:55:22 -05:00

15 lines
522 B
TypeScript

// Run ./tools/http_server.py too in order for this test to run.
import { assert } from "../js/deps/https/deno.land/x/std/testing/mod.ts";
// TODO Top level await https://github.com/denoland/deno/issues/471
async function main() {
const response = await fetch("http://localhost:4545/package.json");
const json = await response.json();
const deps = Object.keys(json.devDependencies);
console.log("Deno JS Deps");
console.log(deps.map(d => `* ${d}`).join("\n"));
assert(deps.includes("typescript"));
}
main();