diff options
Diffstat (limited to 'testdata/fetch.ts')
-rw-r--r-- | testdata/fetch.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testdata/fetch.ts b/testdata/fetch.ts new file mode 100644 index 000000000..24d413903 --- /dev/null +++ b/testdata/fetch.ts @@ -0,0 +1,12 @@ + +const request = async () => { + const response = await fetch('http://localhost:4545/package.json'); + const json = await response.json(); + console.log("expect deno:", json.name); + if (json.name !== "deno") { + throw Error("bad value" + json.name); + } +} + +request(); +console.log("fetch started"); |