@thi.ng/testament
Advanced tools
Comparing version 0.2.3 to 0.2.4
# Change Log | ||
- **Last updated**: 2021-12-13T10:26:00Z | ||
- **Last updated**: 2022-03-11T12:13:49Z | ||
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub) | ||
@@ -12,2 +12,8 @@ | ||
### [0.2.4](https://github.com/thi-ng/umbrella/tree/@thi.ng/testament@0.2.4) (2022-03-11) | ||
#### 🩹 Bug fixes | ||
- update CLI wrapper, propagate exit code ([6b49afe](https://github.com/thi-ng/umbrella/commit/6b49afe)) | ||
## [0.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/testament@0.2.0) (2021-11-17) | ||
@@ -14,0 +20,0 @@ |
@@ -5,8 +5,8 @@ /** | ||
* | ||
* @param dir | ||
* @param match | ||
* @param maxDepth | ||
* @param depth | ||
* @param dir - | ||
* @param match - | ||
* @param maxDepth - | ||
* @param depth - | ||
*/ | ||
export declare function files(dir: string, match: string | RegExp, maxDepth?: number, depth?: number): IterableIterator<string>; | ||
//# sourceMappingURL=cli.d.ts.map |
@@ -82,6 +82,6 @@ // thing:no-export | ||
* | ||
* @param dir | ||
* @param match | ||
* @param maxDepth | ||
* @param depth | ||
* @param dir - | ||
* @param match - | ||
* @param maxDepth - | ||
* @param depth - | ||
*/ | ||
@@ -88,0 +88,0 @@ export function* files(dir, match, maxDepth = Infinity, depth = 0) { |
@@ -6,3 +6,3 @@ import type { Test, TestResult } from "./api.js"; | ||
* | ||
* @param test | ||
* @param test - | ||
*/ | ||
@@ -21,5 +21,5 @@ export declare const register: (test: Test) => void; | ||
* | ||
* @param total | ||
* @param total - | ||
*/ | ||
export declare const execute: (total?: boolean) => Promise<TestResult[]>; | ||
//# sourceMappingURL=exec.d.ts.map |
@@ -7,3 +7,3 @@ import { now, timeDiff } from "./utils.js"; | ||
* | ||
* @param test | ||
* @param test - | ||
*/ | ||
@@ -24,3 +24,3 @@ export const register = (test) => { | ||
* | ||
* @param total | ||
* @param total - | ||
*/ | ||
@@ -27,0 +27,0 @@ export const execute = async (total = true) => { |
@@ -42,7 +42,7 @@ import { Fn, GroupOpts, TestCtx } from "./api.js"; | ||
* | ||
* @param title | ||
* @param tests | ||
* @param opts | ||
* @param title - | ||
* @param tests - | ||
* @param opts - | ||
*/ | ||
export declare const group: (title: string, tests: Record<string, Fn<TestCtx, void>>, opts?: Partial<GroupOpts>) => void; | ||
//# sourceMappingURL=group.d.ts.map |
@@ -44,5 +44,5 @@ import { GLOBAL_OPTS, } from "./api.js"; | ||
* | ||
* @param title | ||
* @param tests | ||
* @param opts | ||
* @param title - | ||
* @param tests - | ||
* @param opts - | ||
*/ | ||
@@ -49,0 +49,0 @@ export const group = (title, tests, opts = {}) => { |
{ | ||
"name": "@thi.ng/testament", | ||
"version": "0.2.3", | ||
"version": "0.2.4", | ||
"description": "Minimal, rational & TypeScript-friendly test runner, result export as CSV/JSON, watch mode", | ||
@@ -38,11 +38,11 @@ "type": "module", | ||
"dependencies": { | ||
"@thi.ng/logger": "^1.1.3", | ||
"chokidar": "^3.5.2" | ||
"@thi.ng/logger": "^1.1.4", | ||
"chokidar": "^3.5.3" | ||
}, | ||
"devDependencies": { | ||
"@microsoft/api-extractor": "^7.19.2", | ||
"@microsoft/api-extractor": "^7.19.4", | ||
"rimraf": "^3.0.2", | ||
"tools": "^0.0.1", | ||
"typedoc": "^0.22.10", | ||
"typescript": "^4.5.3" | ||
"typedoc": "^0.22.13", | ||
"typescript": "^4.6.2" | ||
}, | ||
@@ -88,3 +88,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "2db9dd34c0c2c60cbfde3dad0bca352b20292f5c\n" | ||
"gitHead": "0fc692a3225c068aacafdc4cb6140cf603c67ad8\n" | ||
} |
@@ -170,2 +170,2 @@ <!-- This file is generated - DO NOT EDIT! --> | ||
© 2021 Karsten Schmidt // Apache Software License 2.0 | ||
© 2021 - 2022 Karsten Schmidt // Apache Software License 2.0 |
@@ -46,7 +46,7 @@ import { Fn, Fn0, TestCtx, TestOpts, TestResult } from "./api.js"; | ||
* | ||
* @param title | ||
* @param fn | ||
* @param opts | ||
* @param title - | ||
* @param fn - | ||
* @param opts - | ||
*/ | ||
export declare const test: (title: string, fn: Fn<TestCtx, void>, opts?: Partial<TestOpts> | undefined) => Fn0<Promise<TestResult>>; | ||
//# sourceMappingURL=test.d.ts.map |
@@ -47,5 +47,5 @@ import { GLOBAL_OPTS, } from "./api.js"; | ||
* | ||
* @param title | ||
* @param fn | ||
* @param opts | ||
* @param title - | ||
* @param fn - | ||
* @param opts - | ||
*/ | ||
@@ -52,0 +52,0 @@ export const test = (title, fn, opts) => { |
@@ -6,3 +6,3 @@ import type { Fn0, Fn2, Timestamp } from "./api.js"; | ||
* | ||
* @param x | ||
* @param x - | ||
* | ||
@@ -30,4 +30,4 @@ * @internal | ||
* | ||
* @param a | ||
* @param b | ||
* @param a - | ||
* @param b - | ||
* | ||
@@ -34,0 +34,0 @@ * @internal |
@@ -5,3 +5,3 @@ /** | ||
* | ||
* @param x | ||
* @param x - | ||
* | ||
@@ -35,4 +35,4 @@ * @internal | ||
* | ||
* @param a | ||
* @param b | ||
* @param a - | ||
* @param b - | ||
* | ||
@@ -39,0 +39,0 @@ * @internal |
Sorry, the diff of this file is not supported yet
47314
Updated@thi.ng/logger@^1.1.4
Updatedchokidar@^3.5.3