mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 20:29:11 +00:00
refactor: rename Deno.TestDefinition.skip to ignore (#4400)
This commit is contained in:
parent
54d1f299dc
commit
b0b27c4310
23 changed files with 82 additions and 83 deletions
4
cli/js/lib.deno.ns.d.ts
vendored
4
cli/js/lib.deno.ns.d.ts
vendored
|
@ -17,7 +17,7 @@ declare namespace Deno {
|
|||
export interface TestDefinition {
|
||||
fn: TestFunction;
|
||||
name: string;
|
||||
skip?: boolean;
|
||||
ignore?: boolean;
|
||||
disableOpSanitizer?: boolean;
|
||||
disableResourceSanitizer?: boolean;
|
||||
}
|
||||
|
@ -38,7 +38,7 @@ declare namespace Deno {
|
|||
enum TestStatus {
|
||||
Passed = "passed",
|
||||
Failed = "failed",
|
||||
Skipped = "skipped"
|
||||
Ignored = "ignored"
|
||||
}
|
||||
|
||||
interface TestResult {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue