@xylabs/jest-helpers 4.13.4 → 4.13.6

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.
@@ -1,24 +1,24 @@
1
- /**
2
- * Conditionally runs or skips the describe
3
- * @param expr The condition to evaluate
4
- * @returns If the condition is true, describe, otherwise skips
5
- */
6
- export declare const describeIf: <T>(expr?: T | null) => jest.Describe;
7
-
8
- /**
9
- * Conditionally runs or skips the it
10
- * @param expr The condition to evaluate
11
- * @returns If the condition is true, it, otherwise skips
12
- */
13
- export declare const itIf: <T>(expr?: T | null) => jest.It;
14
-
15
- export declare function tags(...tagLabels: string[]): Record<string, any>;
16
-
17
- /**
18
- * Conditionally runs or skips the test
19
- * @param expr The condition to evaluate
20
- * @returns If the condition is true, test, otherwise skips
21
- */
22
- export declare const testIf: <T>(expr?: T | null) => jest.It;
23
-
24
- export { }
1
+ /**
2
+ * Conditionally runs or skips the describe
3
+ * @param expr The condition to evaluate
4
+ * @returns If the condition is true, describe, otherwise skips
5
+ */
6
+ declare const describeIf: <T>(expr?: T | null) => jest.Describe;
7
+
8
+ /**
9
+ * Conditionally runs or skips the it
10
+ * @param expr The condition to evaluate
11
+ * @returns If the condition is true, it, otherwise skips
12
+ */
13
+ declare const itIf: <T>(expr?: T | null) => jest.It;
14
+
15
+ declare function tags(...tagLabels: string[]): Record<string, any>;
16
+
17
+ /**
18
+ * Conditionally runs or skips the test
19
+ * @param expr The condition to evaluate
20
+ * @returns If the condition is true, test, otherwise skips
21
+ */
22
+ declare const testIf: <T>(expr?: T | null) => jest.It;
23
+
24
+ export { describeIf, itIf, tags, testIf };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xylabs/jest-helpers",
3
- "version": "4.13.4",
3
+ "version": "4.13.6",
4
4
  "description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
5
5
  "keywords": [
6
6
  "jest",
@@ -38,8 +38,8 @@
38
38
  "devDependencies": {
39
39
  "@types/jest": "^30.0.0",
40
40
  "@types/node": "^24.0.13",
41
- "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.7",
42
- "@xylabs/tsconfig": "^7.0.0-rc.7",
41
+ "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.8",
42
+ "@xylabs/tsconfig": "^7.0.0-rc.8",
43
43
  "typescript": "^5.8.3"
44
44
  },
45
45
  "peerDependencies": {