diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-03-19 10:58:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-19 10:58:12 +0100 |
commit | b0b27c43100bf4a7303174b9765c853d2f76f207 (patch) | |
tree | f992aad22e4ca38221bad100d4dae52737ea98a3 /cli/js/tests/test_util.ts | |
parent | 54d1f299dc774c695056f04cfe1013287b53b86a (diff) |
refactor: rename Deno.TestDefinition.skip to ignore (#4400)
Diffstat (limited to 'cli/js/tests/test_util.ts')
-rw-r--r-- | cli/js/tests/test_util.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/js/tests/test_util.ts b/cli/js/tests/test_util.ts index 851596b11..42301cf72 100644 --- a/cli/js/tests/test_util.ts +++ b/cli/js/tests/test_util.ts @@ -123,12 +123,12 @@ interface UnitTestPermissions { } interface UnitTestOptions { - skip?: boolean; + ignore?: boolean; perms?: UnitTestPermissions; } interface UnitTestDefinition extends Deno.TestDefinition { - skip: boolean; + ignore: boolean; perms: Permissions; } @@ -169,7 +169,7 @@ export function unitTest( const unitTestDefinition: UnitTestDefinition = { name, fn, - skip: !!options.skip, + ignore: !!options.ignore, perms: normalizedPerms }; |