summaryrefslogtreecommitdiff
path: root/cli/js/lib.deno.ns.d.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-04-02 09:26:40 -0400
committerGitHub <noreply@github.com>2020-04-02 09:26:40 -0400
commitc738797944bc7e373b51a04e4332c98010135545 (patch)
treef7f91ebd13df71f125588c9261eba912f27ddc30 /cli/js/lib.deno.ns.d.ts
parentff0b32f81d4cdbae9fe868a16a8b19227d79c8b1 (diff)
feat: deno test --filter (#4570)
Diffstat (limited to 'cli/js/lib.deno.ns.d.ts')
-rw-r--r--cli/js/lib.deno.ns.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/lib.deno.ns.d.ts b/cli/js/lib.deno.ns.d.ts
index 955a302a6..ff83e499d 100644
--- a/cli/js/lib.deno.ns.d.ts
+++ b/cli/js/lib.deno.ns.d.ts
@@ -120,7 +120,7 @@ declare namespace Deno {
failFast?: boolean;
/** String or RegExp used to filter test to run. Only test with names
* matching provided `String` or `RegExp` will be run. */
- only?: string | RegExp;
+ filter?: string | RegExp;
/** String or RegExp used to skip tests to run. Tests with names
* matching provided `String` or `RegExp` will not be run. */
skip?: string | RegExp;