mirror of
https://github.com/denoland/deno.git
synced 2024-12-02 17:01:14 -05:00
fix(testing): readme import url (#81)
This commit is contained in:
parent
6754d468d8
commit
9d3d90560c
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
```ts
|
```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({
|
test({
|
||||||
name: 'testing example',
|
name: 'testing example',
|
||||||
|
@ -28,4 +28,4 @@ test(function example() {
|
||||||
assertEqual("world", "world");
|
assertEqual("world", "world");
|
||||||
assertEqual({hello: "world"}, {hello: "world"});
|
assertEqual({hello: "world"}, {hello: "world"});
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue