diff options
-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: { |