diff options
-rw-r--r-- | cli/js/lib.deno.ns.d.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/js/lib.deno.ns.d.ts b/cli/js/lib.deno.ns.d.ts index 1834794a8..d2106b4f8 100644 --- a/cli/js/lib.deno.ns.d.ts +++ b/cli/js/lib.deno.ns.d.ts @@ -16,7 +16,12 @@ declare namespace Deno { fn: () => void | Promise<void>; name: string; ignore?: boolean; + /** Check that the number of async completed ops after the test is the same + * as number of dispatched ops. Defaults to true.*/ sanitizeOps?: boolean; + /** Ensure the test case does not "leak" resources - ie. the resource table + * after the test has exactly the same contents as before the test. Defaults + * to true. */ sanitizeResources?: boolean; } |