Last active
April 14, 2020 13:46
-
-
Save acdibble/3ab3095e6c3d823f06692d9f25b79133 to your computer and use it in GitHub Desktop.
Patch file for node tap types
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/tap/package.json b/node_modules/tap/package.json | |
index 0000000..2cb8e5e | |
--- a/node_modules/tap/package.json | |
+++ b/node_modules/tap/package.json | |
@@ -152,5 +152,6 @@ | |
"test-ignore": "/(^|/)cli-tests-[0-9]+/", | |
"check-coverage": true | |
}, | |
- "version": "14.10.7" | |
+ "version": "14.10.7", | |
+ "types": "types/tap.d.ts" | |
} | |
diff --git a/node_modules/tap/types/tap.d.ts b/node_modules/tap/types/tap.d.ts | |
new file mode 100644 | |
index 0000000..2cb8e5e | |
--- /dev/null | |
+++ b/node_modules/tap/types/tap.d.ts | |
@@ -0,0 +1,5 @@ | |
+import { Tap } from './test' | |
+ | |
+declare var tap: Tap; | |
+ | |
+export = tap; | |
diff --git a/node_modules/tap/types/test.d.ts b/node_modules/tap/types/test.d.ts | |
new file mode 100644 | |
index 0000000..0f7d43e | |
--- /dev/null | |
+++ b/node_modules/tap/types/test.d.ts | |
@@ -0,0 +1,221 @@ | |
+type AnyFunction = (...args: any[]) => any; | |
+type Constructor<T extends {} = {}> = new (...args: any[]) => T; | |
+ | |
+export declare class Test { | |
+ constructor (options?: Options.Test) | |
+ tearDown(fn: () => void | Promise<void>): void | |
+ teardown(fn: () => void | Promise<void>): void | |
+ setTimeout(n: number): void | |
+ endAll(): void | |
+ threw(error: Error, extra?: Error, proxy?: Test): void | |
+ pragma(set: Options.Pragma): void | |
+ plan(n: number, comment?: string): void | |
+ end(): void | |
+ test(name: string, extra?: Options.Test, cb?: (t: Test) => Promise<void> | void): Promise<void> | |
+ test(name: string, cb?: (t: Test) => Promise<void> | void): Promise<void> | |
+ todo(name: string, cb?: (t: Test) => Promise<void> | void): Promise<void> | |
+ todo(name: string, extra?: Options.Test, cb?: (t: Test) => Promise<void> | void): Promise<void> | |
+ skip(name: string, cb?: (t: Test) => Promise<void> | void): Promise<void> | |
+ skip(name: string, extra?: Options.Test, cb?: (t: Test) => Promise<void> | void): Promise<void> | |
+ only(name: string, cb?: (t: Test) => Promise<void> | void): Promise<void> | |
+ only(name: string, extra?: Options.Test, cb?: (t: Test) => Promise<void> | void): Promise<void> | |
+ current(): Test | |
+ stdin(name: string, extra?: Options.Bag): Promise<void> | |
+ spawn(cmd: string, args: string, options?: Options.Bag, name?: string, extra?: Options.Spawn): Promise<void> | |
+ done(): void | |
+ passing(): boolean | |
+ pass(message?: string, extra?: Options.Assert): boolean | |
+ fail(message?: string, extra?: Options.Assert): boolean | |
+ addAssert(name: string, length: number, fn: (...args: any[]) => boolean): boolean | |
+ comment(message: string, ...args:any[]): void | |
+ bailout(message?: string): void | |
+ beforeEach(fn: (done: () => void, childTest: Test) => void | Promise<void>): void | |
+ afterEach(fn: (done: () => void, childTest: Test) => void | Promise<void>): void | |
+ | |
+ context: any | |
+ name: string | |
+ runOnly: boolean | |
+ jobs: number | |
+ | |
+ // Assertions | |
+ ok: Assertions.Basic | |
+ true: Assertions.Basic | |
+ assert: Assertions.Basic | |
+ | |
+ notOk: Assertions.Basic | |
+ false: Assertions.Basic | |
+ assertNot: Assertions.Basic | |
+ | |
+ error: Assertions.Basic | |
+ ifErr: Assertions.Basic | |
+ ifError: Assertions.Basic | |
+ | |
+ throws: Assertions.Throws | |
+ throw: Assertions.Throws | |
+ | |
+ doesNotThrow: Assertions.DoesNotThrow | |
+ notThrow: Assertions.DoesNotThrow | |
+ | |
+ equal: Assertions.Equal | |
+ equals: Assertions.Equal | |
+ isEqual: Assertions.Equal | |
+ is: Assertions.Equal | |
+ strictEqual: Assertions.Equal | |
+ strictEquals: Assertions.Equal | |
+ strictIs: Assertions.Equal | |
+ isStrict: Assertions.Equal | |
+ isStrictly: Assertions.Equal | |
+ | |
+ notEqual: Assertions.NotEqual | |
+ notEquals: Assertions.NotEqual | |
+ inequal: Assertions.NotEqual | |
+ notStrictEqual: Assertions.NotEqual | |
+ notStrictEquals: Assertions.NotEqual | |
+ isNotEqual: Assertions.NotEqual | |
+ isNot: Assertions.NotEqual | |
+ doesNotEqual: Assertions.NotEqual | |
+ isInequal: Assertions.NotEqual | |
+ | |
+ same: Assertions.Equal | |
+ equivalent: Assertions.Equal | |
+ looseEqual: Assertions.Equal | |
+ looseEquals: Assertions.Equal | |
+ deepEqual: Assertions.Equal | |
+ deepEquals: Assertions.Equal | |
+ isLoose: Assertions.Equal | |
+ looseIs: Assertions.Equal | |
+ | |
+ notSame: Assertions.NotEqual | |
+ inequivalent: Assertions.NotEqual | |
+ looseInequal: Assertions.NotEqual | |
+ notDeep: Assertions.NotEqual | |
+ deepInequal: Assertions.NotEqual | |
+ notLoose: Assertions.NotEqual | |
+ looseNot: Assertions.NotEqual | |
+ | |
+ strictSame: Assertions.Equal | |
+ strictEquivalent: Assertions.Equal | |
+ strictDeepEqual: Assertions.Equal | |
+ sameStrict: Assertions.Equal | |
+ deepIs: Assertions.Equal | |
+ isDeeply: Assertions.Equal | |
+ isDeep: Assertions.Equal | |
+ strictDeepEquals: Assertions.Equal | |
+ | |
+ strictNotSame: Assertions.NotEqual | |
+ strictInequivalent: Assertions.NotEqual | |
+ strictDeepInequal: Assertions.NotEqual | |
+ notSameStrict: Assertions.NotEqual | |
+ deepNot: Assertions.NotEqual | |
+ notDeeply: Assertions.NotEqual | |
+ strictDeepInequals: Assertions.NotEqual | |
+ notStrictSame: Assertions.NotEqual | |
+ | |
+ match: Assertions.Match | |
+ has: Assertions.Match | |
+ hasFields: Assertions.Match | |
+ matches: Assertions.Match | |
+ similar: Assertions.Match | |
+ like: Assertions.Match | |
+ isLike: Assertions.Match | |
+ includes: Assertions.Match | |
+ include: Assertions.Match | |
+ contains: Assertions.Match | |
+ | |
+ notMatch: Assertions.Match | |
+ dissimilar: Assertions.Match | |
+ unsimilar: Assertions.Match | |
+ notSimilar: Assertions.Match | |
+ unlike: Assertions.Match | |
+ isUnlike: Assertions.Match | |
+ notLike: Assertions.Match | |
+ isNotLike: Assertions.Match | |
+ doesNotHave: Assertions.Match | |
+ isNotSimilar: Assertions.Match | |
+ isDissimilar: Assertions.Match | |
+ | |
+ type: Assertions.Type | |
+ isa: Assertions.Type | |
+ isA: Assertions.Type | |
+} | |
+ | |
+export declare namespace Options { | |
+ export interface Bag { | |
+ [key: string]: any | |
+ } | |
+ | |
+ export interface Pragma { | |
+ [key: string]: boolean | |
+ } | |
+ | |
+ export interface Assert extends Bag { | |
+ todo?: boolean | string, | |
+ skip?: boolean | string, | |
+ diagnostic?: boolean | |
+ } | |
+ | |
+ export interface Spawn extends Assert { | |
+ bail?: boolean, | |
+ timeout?: number | |
+ } | |
+ | |
+ export interface Test extends Assert { | |
+ timeout?: number, | |
+ bail?: boolean, | |
+ autoend?: boolean, | |
+ buffered?: boolean, | |
+ jobs?: number, | |
+ grep?: RegExp[], | |
+ only?: boolean, | |
+ runOnly?: boolean | |
+ } | |
+} | |
+ | |
+export declare namespace Assertions { | |
+ export type Basic = (obj: any, message?: string, extra?: Options.Assert) => boolean | |
+ | |
+ export interface Throws { | |
+ (fn: AnyFunction): boolean; | |
+ (fn: AnyFunction, message: string): boolean; | |
+ (fn: AnyFunction, expectedError: Object): boolean; | |
+ (fn: AnyFunction, expectedError: Object, message: string): boolean; | |
+ (fn: AnyFunction, expectedError: Object, extra: Options.Assert): boolean | |
+ (fn: AnyFunction, message: string, extra: Options.Assert): boolean | |
+ (fn: AnyFunction, expectedError: Object, message: string, extra: Options.Assert): boolean | |
+ (fn: AnyFunction, arg1?: string | Object, arg2?: string | Object | Options.Assert, arg3?: Options.Assert): boolean | |
+ } | |
+ | |
+ export type DoesNotThrow = (fn?: (a: any) => any, message?: string, extra?: Options.Assert) => boolean | |
+ | |
+ export interface Equal { | |
+ <T>(found: T, wanted: T): boolean; | |
+ <T>(found: T, wanted: T, message: string): boolean; | |
+ <T>(found: T, wanted: T, extra: Options.Assert): boolean; | |
+ <T>(found: T, wanted: T, message: string, extra: Options.Assert): boolean; | |
+ <T>(found: T, wanted: T, message?: string, extra?: Options.Assert): boolean; | |
+ } | |
+ | |
+ export type NotEqual = (found: any, notWanted: any, message?: string, extra?: Options.Assert) => boolean | |
+ | |
+ export type Match = (found: any, pattern: any, message?: string, extra?: Options.Assert) => boolean | |
+ | |
+ export type Type = (found: any, type: string | Constructor, message?: string, extra?: Options.Assert) => boolean | |
+} | |
+ | |
+export declare interface Mocha { | |
+ it: (name?: string, fn?: (a: any) => any) => void | |
+ describe: (name?: string, fn?: (a: any) => any) => void | |
+ global: () => void | |
+} | |
+ | |
+// Little hack to simulate the Test class on the tap export | |
+export declare interface TestConstructor { | |
+ new(options?: Options.Test): Test | |
+ prototype: Test | |
+} | |
+ | |
+export declare interface Tap extends Test { | |
+ Test: TestConstructor | |
+ mocha: Mocha | |
+ mochaGlobals: () => void | |
+} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment