From 5e4764a00fa9179be823a35041880e7e5518c854 Mon Sep 17 00:00:00 2001 From: Casper Beyer Date: Thu, 13 May 2021 15:03:34 +0800 Subject: docs(cli/dts): fix missing std/testing/asserts.ts imports in examples (#10579) --- cli/dts/lib.deno.unstable.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'cli/dts/lib.deno.unstable.d.ts') 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: { -- cgit v1.2.3