supertape 13.4.2 → 13.5.0

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.
package/ChangeLog CHANGED
@@ -1,3 +1,18 @@
1
+ 2026.07.24, v13.5.0
2
+
3
+ feature:
4
+ - 4c93158 supertape: extend: types
5
+
6
+ 2026.07.19, v13.4.3
7
+
8
+ fix:
9
+ - af537c1 @supertape/loader-jsx: rm shirtCircuit
10
+ - e9b7a72 @supertape/loader-jsx: add sourcemap
11
+
12
+ feature:
13
+ - c529b8d supertape: env: types: nestjs
14
+ - 9741e79 @supertape/operator-stub: improve types
15
+
1
16
  2026.07.12, v13.4.2
2
17
 
3
18
  feature:
@@ -1,8 +1,11 @@
1
- type Env = {};
1
+ type Env = {
2
+ NODE_OPTIONS: string;
3
+ };
2
4
  type Config = {
3
5
  ts?: boolean;
4
6
  css?: boolean;
5
7
  dom?: boolean;
8
+ nestjs?: boolean;
6
9
  timeout?: number;
7
10
  };
8
11
  type Overrides = {
@@ -38,9 +38,10 @@ export type TestOptions = {
38
38
  timeout?: number;
39
39
  };
40
40
 
41
- export type TestFunction<T extends Test = Test> = ((message: string, fn: (t: T) => void, options?: TestOptions) => void) & {
41
+ type TestFunction<T extends Test = Test> = ((message: string, fn: (t: T) => void, options?: TestOptions) => void) & {
42
42
  skip: TestFunction<T>;
43
43
  only: TestFunction<T>;
44
+ extend<U extends CustomOperator>(operators: U): TestFunction<T & OperatorsToMethods<U>>;
44
45
  };
45
46
 
46
47
  export let test: TestFunction<Test>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supertape",
3
- "version": "13.4.2",
3
+ "version": "13.5.0",
4
4
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
5
5
  "description": "📼 Supertape simplest high speed test runner with superpowers",
6
6
  "homepage": "http://github.com/coderaiser/supertape",