summaryrefslogtreecommitdiff
path: root/tests.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-05-29 03:08:01 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-05-29 03:08:01 -0400
commitaf3e43c3182bbb8c9b7287bfa57ac7f7ff6de39a (patch)
tree36fbbdfe699fdcc4f43e5d64d7a7ece189d26869 /tests.ts
parent27c2529c1a237f1ee4bd9e7c40bf48fe198193cf (diff)
fmt and adjust comment
Diffstat (limited to 'tests.ts')
-rw-r--r--tests.ts8
1 files changed, 2 insertions, 6 deletions
diff --git a/tests.ts b/tests.ts
index 97bdc9b00..5230c8ce5 100644
--- a/tests.ts
+++ b/tests.ts
@@ -7,17 +7,14 @@
// serving the deno project directory. Try this:
// http-server -p 4545 --cors .
import { test, assert, assertEqual } from "./deno_testing/testing.ts";
-import {
- readFileSync,
- writeFileSync
-} from "deno";
+import { readFileSync, writeFileSync } from "deno";
test(async function tests_test() {
assert(true);
});
test(async function tests_fetch() {
- const response = await fetch('http://localhost:4545/package.json');
+ const response = await fetch("http://localhost:4545/package.json");
const json = await response.json();
assertEqual(json.name, "deno");
});
@@ -46,4 +43,3 @@ test(async function tests_writeFileSync() {
const actual = dec.decode(dataRead);
assertEqual("Hello", actual);
});
-