mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
docs(cli/dts): fix missing std/testing/asserts.ts imports in examples (#10579)
This commit is contained in:
parent
e8a7f237de
commit
5e4764a00f
1 changed files with 8 additions and 0 deletions
8
cli/dts/lib.deno.unstable.d.ts
vendored
8
cli/dts/lib.deno.unstable.d.ts
vendored
|
@ -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: {
|
||||
|
|
Loading…
Reference in a new issue