1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-30 16:40:57 -05:00

fix(testing): readme import url (#81)

This commit is contained in:
木杉 2019-01-04 18:09:42 +08:00 committed by Ryan Dahl
parent 6754d468d8
commit 9d3d90560c

View file

@ -3,7 +3,7 @@
## Usage
```ts
import { test, assert, equal, assertEqual } from 'https://deno.land/x/testing/testing.ts';
import { test, assert, equal, assertEqual } from 'https://deno.land/x/testing/mod.ts';
test({
name: 'testing example',
@ -28,4 +28,4 @@ test(function example() {
assertEqual("world", "world");
assertEqual({hello: "world"}, {hello: "world"});
});
```
```