@xylabs/jest-helpers 4.0.3 → 4.0.4

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.
@@ -0,0 +1,2 @@
1
+ export declare const describeIf: <T>(expr?: T | null) => jest.Describe;
2
+ //# sourceMappingURL=describeIf.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"describeIf.d.ts","sourceRoot":"","sources":["../../src/describeIf.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,UAAU,GAAI,CAAC,SAAS,CAAC,GAAG,IAAI,kBAAsC,CAAA"}
@@ -1,9 +1,5 @@
1
- declare const describeIf: <T>(expr?: T | null) => jest.Describe;
2
-
3
- declare const itIf: <T>(expr?: T | null) => jest.It;
4
-
5
- declare function tags(...tagLabels: string[]): Record<string, any>;
6
-
7
- declare const testIf: <T>(expr?: T | null) => jest.It;
8
-
9
- export { describeIf, itIf, tags, testIf };
1
+ export * from './describeIf.ts';
2
+ export * from './itIf.ts';
3
+ export * from './tags/index.ts';
4
+ export * from './testIf.ts';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAA;AAC/B,cAAc,WAAW,CAAA;AACzB,cAAc,iBAAiB,CAAA;AAC/B,cAAc,aAAa,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const itIf: <T>(expr?: T | null) => jest.It;
2
+ //# sourceMappingURL=itIf.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"itIf.d.ts","sourceRoot":"","sources":["../../src/itIf.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,IAAI,GAAI,CAAC,SAAS,CAAC,GAAG,IAAI,YAA0B,CAAA"}
@@ -0,0 +1,5 @@
1
+ export declare const NOT_SYMBOL = "!";
2
+ export declare const AND_SYMBOL = "&&";
3
+ export declare const OR_SYMBOL = "||";
4
+ export declare const RESERVED_COMMANDS: string[];
5
+ //# sourceMappingURL=config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../src/tags/config.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU,MAAM,CAAA;AAE7B,eAAO,MAAM,UAAU,OAAO,CAAA;AAE9B,eAAO,MAAM,SAAS,OAAO,CAAA;AAE7B,eAAO,MAAM,iBAAiB,UAAa,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const matchFilter: (strParam?: string) => (tags: string[]) => boolean;
2
+ //# sourceMappingURL=filter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"filter.d.ts","sourceRoot":"","sources":["../../../src/tags/filter.ts"],"names":[],"mappings":"AAaA,eAAO,MAAM,WAAW,gCAEb,MAAM,EAAE,YA0Bd,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare function tags(...tagLabels: string[]): Record<string, any>;
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/tags/index.ts"],"names":[],"mappings":"AAOA,wBAAgB,IAAI,CAAC,GAAG,SAAS,EAAE,MAAM,EAAE,uBA0B1C"}
@@ -0,0 +1,7 @@
1
+ export declare const escape: (str: string) => string;
2
+ export declare const AND_REGX: RegExp;
3
+ export declare const OR_REGX: RegExp;
4
+ export declare const PLAIN_REGX: RegExp;
5
+ export declare const BAD_REGX: RegExp;
6
+ export declare const GOOD_REGX: RegExp;
7
+ //# sourceMappingURL=regexps.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"regexps.d.ts","sourceRoot":"","sources":["../../../src/tags/regexps.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,MAAM,QAAS,MAAM,WAAmD,CAAA;AAErF,eAAO,MAAM,QAAQ,QAA8C,CAAA;AAEnE,eAAO,MAAM,OAAO,QAA6C,CAAA;AAEjE,eAAO,MAAM,UAAU,QAA8B,CAAA;AAErD,eAAO,MAAM,QAAQ,QAA0C,CAAA;AAE/D,eAAO,MAAM,SAAS,QAA6C,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const getJestPassedParams: (argv: any) => any[];
2
+ //# sourceMappingURL=utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/tags/utils.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,mBAAmB,SAAU,GAAG,UAI5C,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const testIf: <T>(expr?: T | null) => jest.It;
2
+ //# sourceMappingURL=testIf.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"testIf.d.ts","sourceRoot":"","sources":["../../src/testIf.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,MAAM,GAAI,CAAC,SAAS,CAAC,GAAG,IAAI,YAA8B,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xylabs/jest-helpers",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
4
4
  "description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
5
5
  "keywords": [
6
6
  "jest",
@@ -36,8 +36,8 @@
36
36
  "module": "./dist/neutral/index.mjs",
37
37
  "types": "./dist/neutral/index.d.ts",
38
38
  "devDependencies": {
39
- "@xylabs/ts-scripts-yarn3": "^4.0.0",
40
- "@xylabs/tsconfig": "^4.0.0",
39
+ "@xylabs/ts-scripts-yarn3": "^4.0.7",
40
+ "@xylabs/tsconfig": "^4.0.7",
41
41
  "jest": "^29.7.0",
42
42
  "typescript": "^5.5.4"
43
43
  },