refactor(cli/js/testing): Rename disableOpSanitizer to sanitizeOps (#4854)

* rename disableOpSanitizer to sanitizeOps
* rename disableResourceSanitizer to sanitizeResources
This commit is contained in:
Nayeem Rahman 2020-04-23 13:40:16 +01:00 committed by GitHub
parent d8711155ca
commit 65bba2b87e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 9 deletions

View file

@ -16,8 +16,8 @@ declare namespace Deno {
fn: () => void | Promise<void>;
name: string;
ignore?: boolean;
disableOpSanitizer?: boolean;
disableResourceSanitizer?: boolean;
sanitizeOps?: boolean;
sanitizeResources?: boolean;
}
/** Register a test which will be run when `deno test` is used on the command