@augment-vir/test 31.32.1 → 31.32.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -87,7 +87,7 @@ export type FunctionWithContextTestCase<FunctionToTest extends BaseFunctionWithC
87
87
  *
88
88
  * @package [`@augment-vir/test`](https://www.npmjs.com/package/@augment-vir/test)
89
89
  */
90
- export declare function itCasesWithContext<const FunctionToTest extends BaseFunctionWithContext>(this: void, functionToTest: FunctionToTest, customAsserter: CustomOutputAsserter<NoInfer<FunctionToTest>>, testCases: ReadonlyArray<FunctionWithContextTestCase<NoInfer<FunctionToTest>>>): unknown[];
90
+ export declare function itCasesWithContext<const FunctionToTest extends BaseFunctionWithContext>(this: void, functionToTest: FunctionToTest, testCases: ReadonlyArray<FunctionWithContextTestCase<NoInfer<FunctionToTest>>>): unknown[];
91
91
  /**
92
92
  * Succinctly run many input / output tests for a pure function without repeating `it` boilerplate.
93
93
  * Compatible with both [Node.js's test runner](https://nodejs.org/api/test.html) and
@@ -137,4 +137,4 @@ export declare function itCasesWithContext<const FunctionToTest extends BaseFunc
137
137
  *
138
138
  * @package [`@augment-vir/test`](https://www.npmjs.com/package/@augment-vir/test)
139
139
  */
140
- export declare function itCasesWithContext<const FunctionToTest extends BaseFunctionWithContext>(this: void, functionToTest: FunctionToTest, testCases: ReadonlyArray<FunctionWithContextTestCase<NoInfer<FunctionToTest>>>): unknown[];
140
+ export declare function itCasesWithContext<const FunctionToTest extends BaseFunctionWithContext>(this: void, functionToTest: FunctionToTest, customAsserter: CustomOutputAsserter<NoInfer<FunctionToTest>>, testCases: ReadonlyArray<FunctionWithContextTestCase<NoInfer<FunctionToTest>>>): unknown[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@augment-vir/test",
3
- "version": "31.32.1",
3
+ "version": "31.32.3",
4
4
  "description": "A universal testing suite that works with Mocha style test runners _and_ Node.js's built-in test runner.",
5
5
  "keywords": [
6
6
  "test",
@@ -43,8 +43,8 @@
43
43
  "test:web": "virmator test --no-deps web 'src/test-web/**/*.test.ts' 'src/augments/universal-testing-suite/**/*.test.ts'"
44
44
  },
45
45
  "dependencies": {
46
- "@augment-vir/assert": "^31.32.1",
47
- "@augment-vir/common": "^31.32.1",
46
+ "@augment-vir/assert": "^31.32.3",
47
+ "@augment-vir/common": "^31.32.3",
48
48
  "@open-wc/testing-helpers": "^3.0.1",
49
49
  "@virmator/test": "^13.15.6",
50
50
  "type-fest": "^4.41.0"