diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-05-13 15:03:34 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-13 16:03:34 +0900 |
commit | 5e4764a00fa9179be823a35041880e7e5518c854 (patch) | |
tree | 2679fb52ce591dd29bdca53088a8b3d4a96357bb | |
parent | e8a7f237de30a8291f97e318ba79382b65a8d228 (diff) |
docs(cli/dts): fix missing std/testing/asserts.ts imports in examples (#10579)
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index f13b55aba..cf0470f20 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -1212,6 +1212,8 @@ declare namespace Deno { * Examples: * * ```ts + * import { assertEquals } from "https://deno.land/std/testing/asserts.ts"; + * * Deno.test({ * name: "inherit", * permissions: { @@ -1225,6 +1227,8 @@ declare namespace Deno { * ``` * * ```ts + * import { assertEquals } from "https://deno.land/std/testing/asserts.ts"; + * * Deno.test({ * name: "true", * permissions: { @@ -1238,6 +1242,8 @@ declare namespace Deno { * ``` * * ```ts + * import { assertEquals } from "https://deno.land/std/testing/asserts.ts"; + * * Deno.test({ * name: "false", * permissions: { @@ -1251,6 +1257,8 @@ declare namespace Deno { * ``` * * ``` + * import { assertEquals } from "https://deno.land/std/testing/asserts.ts"; + * * Deno.test({ * name: "localhost:8080", * permissions: { |