diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-04-02 09:26:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-02 09:26:40 -0400 |
commit | c738797944bc7e373b51a04e4332c98010135545 (patch) | |
tree | f7f91ebd13df71f125588c9261eba912f27ddc30 /cli/js/lib.deno.ns.d.ts | |
parent | ff0b32f81d4cdbae9fe868a16a8b19227d79c8b1 (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.ts | 2 |
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; |