summaryrefslogtreecommitdiff
path: root/std/testing/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'std/testing/README.md')
-rw-r--r--std/testing/README.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/std/testing/README.md b/std/testing/README.md
index 8d02f9d79..afaf76b86 100644
--- a/std/testing/README.md
+++ b/std/testing/README.md
@@ -48,8 +48,11 @@ Asserts are exposed in `testing/asserts.ts` module.
Basic usage:
```ts
-import { runTests, test } from "https://deno.land/std/testing/mod.ts";
-import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
+import {
+ assertEquals,
+ runTests,
+ test
+} from "https://deno.land/std/testing/mod.ts";
test({
name: "testing example",