forked from nodejs/node-core-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
69 lines (60 loc) · 2.46 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
interface TestOptions {
/**
* The number of tests that can be run at the same time. If unspecified, subtests inherit this value from their parent.
* Default: 1.
*/
concurrency?: number
/**
* If truthy, the test is skipped. If a string is provided, that string is displayed in the test results as the reason for skipping the test.
* Default: false.
*/
skip?: boolean | string
/**
* If truthy, the test marked as TODO. If a string is provided, that string is displayed in the test results as the reason why the test is TODO.
* Default: false.
*/
todo?: boolean | string
}
type TestFn = (t: TestContext) => any | Promise<any>
export default test
/**
* @returns Whether `string` is a URL.
*/
declare function test (name: string, options: TestOptions, fn: TestFn): void
declare function test (name: string, fn: TestFn): void
declare function test (fn: TestFn): void
/**
* An instance of TestContext is passed to each test function in order to interact with the test runner.
* However, the TestContext constructor is not exposed as part of the API.
*/
export class TestContext {
/**
* This function is used to create subtests under the current test. This function behaves in the same fashion as the top level test() function.
*/
public test (name: string, options: TestOptions, fn: TestFn): Promise<void>
public test (name: string, fn: TestFn): Promise<void>
public test (fn: TestFn): Promise<void>
/**
* This function is used to write TAP diagnostics to the output.
* Any diagnostic information is included at the end of the test's results. This function does not return a value.
*
* @param message Message to be displayed as a TAP diagnostic.
*/
public diagnostic (message: string): void
/**
* This function causes the test's output to indicate the test as skipped.
* If message is provided, it is included in the TAP output.
* Calling skip() does not terminate execution of the test function. This function does not return a value.
*
* @param message Optional skip message to be displayed in TAP output.
*/
public skip (message?: string): void
/**
* This function adds a TODO directive to the test's output.
* If message is provided, it is included in the TAP output.
* Calling todo() does not terminate execution of the test function. This function does not return a value.
*
* @param message Optional TODO message to be displayed in TAP output.
*/
public todo (message?: string): void
}