@xylabs/jest-helpers 2.11.10 → 2.11.12

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/package.json CHANGED
@@ -39,8 +39,8 @@
39
39
  "esm"
40
40
  ],
41
41
  "devDependencies": {
42
- "@xylabs/ts-scripts-yarn3": "^3.0.55",
43
- "@xylabs/tsconfig": "^3.0.55",
42
+ "@xylabs/ts-scripts-yarn3": "^3.0.62",
43
+ "@xylabs/tsconfig": "^3.0.62",
44
44
  "jest": "^29.7.0",
45
45
  "typescript": "^5.2.2"
46
46
  },
@@ -55,5 +55,5 @@
55
55
  "url": "https://github.com/xylabs/sdk-js.git"
56
56
  },
57
57
  "sideEffects": false,
58
- "version": "2.11.10"
58
+ "version": "2.11.12"
59
59
  }
@@ -1,14 +0,0 @@
1
- import { describeIf } from "../describeIf";
2
- describe("describeIf", () => {
3
- describeIf(true)("This block should run", () => {
4
- it("should run", () => {
5
- expect(true).toBeTrue();
6
- });
7
- });
8
- describeIf(false)("This block should not run", () => {
9
- it("should not run", () => {
10
- expect(true).toBeFalse();
11
- });
12
- });
13
- });
14
- //# sourceMappingURL=describeIf.spec.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../../src/spec/describeIf.spec.ts"],"sourcesContent":["import { describeIf } from '../describeIf'\n\ndescribe('describeIf', () => {\n describeIf(true)('This block should run', () => {\n it('should run', () => {\n expect(true).toBeTrue()\n })\n })\n describeIf(false)('This block should not run', () => {\n it('should not run', () => {\n expect(true).toBeFalse()\n })\n })\n})\n"],"mappings":"AAAA,SAAS,kBAAkB;AAE3B,SAAS,cAAc,MAAM;AAC3B,aAAW,IAAI,EAAE,yBAAyB,MAAM;AAC9C,OAAG,cAAc,MAAM;AACrB,aAAO,IAAI,EAAE,SAAS;AAAA,IACxB,CAAC;AAAA,EACH,CAAC;AACD,aAAW,KAAK,EAAE,6BAA6B,MAAM;AACnD,OAAG,kBAAkB,MAAM;AACzB,aAAO,IAAI,EAAE,UAAU;AAAA,IACzB,CAAC;AAAA,EACH,CAAC;AACH,CAAC;","names":[]}
@@ -1,10 +0,0 @@
1
- import { itIf } from "../itIf";
2
- describe("itIf", () => {
3
- itIf(true)("should run", () => {
4
- expect(true).toBeTrue();
5
- });
6
- itIf(false)("should not run", () => {
7
- expect(true).toBeFalse();
8
- });
9
- });
10
- //# sourceMappingURL=itIf.spec.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../../src/spec/itIf.spec.ts"],"sourcesContent":["import { itIf } from '../itIf'\n\ndescribe('itIf', () => {\n itIf(true)('should run', () => {\n expect(true).toBeTrue()\n })\n itIf(false)('should not run', () => {\n expect(true).toBeFalse()\n })\n})\n"],"mappings":"AAAA,SAAS,YAAY;AAErB,SAAS,QAAQ,MAAM;AACrB,OAAK,IAAI,EAAE,cAAc,MAAM;AAC7B,WAAO,IAAI,EAAE,SAAS;AAAA,EACxB,CAAC;AACD,OAAK,KAAK,EAAE,kBAAkB,MAAM;AAClC,WAAO,IAAI,EAAE,UAAU;AAAA,EACzB,CAAC;AACH,CAAC;","names":[]}
@@ -1,10 +0,0 @@
1
- import { testIf } from "../testIf";
2
- describe("testIf", () => {
3
- testIf(true)("should run", () => {
4
- expect(true).toBeTrue();
5
- });
6
- testIf(false)("should not run", () => {
7
- expect(true).toBeFalse();
8
- });
9
- });
10
- //# sourceMappingURL=testIf.spec.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../../src/spec/testIf.spec.ts"],"sourcesContent":["import { testIf } from '../testIf'\n\ndescribe('testIf', () => {\n testIf(true)('should run', () => {\n expect(true).toBeTrue()\n })\n testIf(false)('should not run', () => {\n expect(true).toBeFalse()\n })\n})\n"],"mappings":"AAAA,SAAS,cAAc;AAEvB,SAAS,UAAU,MAAM;AACvB,SAAO,IAAI,EAAE,cAAc,MAAM;AAC/B,WAAO,IAAI,EAAE,SAAS;AAAA,EACxB,CAAC;AACD,SAAO,KAAK,EAAE,kBAAkB,MAAM;AACpC,WAAO,IAAI,EAAE,UAAU;AAAA,EACzB,CAAC;AACH,CAAC;","names":[]}
@@ -1,15 +0,0 @@
1
- "use strict";
2
- var import_describeIf = require("../describeIf");
3
- describe("describeIf", () => {
4
- (0, import_describeIf.describeIf)(true)("This block should run", () => {
5
- it("should run", () => {
6
- expect(true).toBeTrue();
7
- });
8
- });
9
- (0, import_describeIf.describeIf)(false)("This block should not run", () => {
10
- it("should not run", () => {
11
- expect(true).toBeFalse();
12
- });
13
- });
14
- });
15
- //# sourceMappingURL=describeIf.spec.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../../src/spec/describeIf.spec.ts"],"sourcesContent":["import { describeIf } from '../describeIf'\n\ndescribe('describeIf', () => {\n describeIf(true)('This block should run', () => {\n it('should run', () => {\n expect(true).toBeTrue()\n })\n })\n describeIf(false)('This block should not run', () => {\n it('should not run', () => {\n expect(true).toBeFalse()\n })\n })\n})\n"],"mappings":";AAAA,wBAA2B;AAE3B,SAAS,cAAc,MAAM;AAC3B,oCAAW,IAAI,EAAE,yBAAyB,MAAM;AAC9C,OAAG,cAAc,MAAM;AACrB,aAAO,IAAI,EAAE,SAAS;AAAA,IACxB,CAAC;AAAA,EACH,CAAC;AACD,oCAAW,KAAK,EAAE,6BAA6B,MAAM;AACnD,OAAG,kBAAkB,MAAM;AACzB,aAAO,IAAI,EAAE,UAAU;AAAA,IACzB,CAAC;AAAA,EACH,CAAC;AACH,CAAC;","names":[]}
@@ -1,14 +0,0 @@
1
- import { describeIf } from "../describeIf";
2
- describe("describeIf", () => {
3
- describeIf(true)("This block should run", () => {
4
- it("should run", () => {
5
- expect(true).toBeTrue();
6
- });
7
- });
8
- describeIf(false)("This block should not run", () => {
9
- it("should not run", () => {
10
- expect(true).toBeFalse();
11
- });
12
- });
13
- });
14
- //# sourceMappingURL=describeIf.spec.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../../src/spec/describeIf.spec.ts"],"sourcesContent":["import { describeIf } from '../describeIf'\n\ndescribe('describeIf', () => {\n describeIf(true)('This block should run', () => {\n it('should run', () => {\n expect(true).toBeTrue()\n })\n })\n describeIf(false)('This block should not run', () => {\n it('should not run', () => {\n expect(true).toBeFalse()\n })\n })\n})\n"],"mappings":"AAAA,SAAS,kBAAkB;AAE3B,SAAS,cAAc,MAAM;AAC3B,aAAW,IAAI,EAAE,yBAAyB,MAAM;AAC9C,OAAG,cAAc,MAAM;AACrB,aAAO,IAAI,EAAE,SAAS;AAAA,IACxB,CAAC;AAAA,EACH,CAAC;AACD,aAAW,KAAK,EAAE,6BAA6B,MAAM;AACnD,OAAG,kBAAkB,MAAM;AACzB,aAAO,IAAI,EAAE,UAAU;AAAA,IACzB,CAAC;AAAA,EACH,CAAC;AACH,CAAC;","names":[]}
@@ -1,11 +0,0 @@
1
- "use strict";
2
- var import_itIf = require("../itIf");
3
- describe("itIf", () => {
4
- (0, import_itIf.itIf)(true)("should run", () => {
5
- expect(true).toBeTrue();
6
- });
7
- (0, import_itIf.itIf)(false)("should not run", () => {
8
- expect(true).toBeFalse();
9
- });
10
- });
11
- //# sourceMappingURL=itIf.spec.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../../src/spec/itIf.spec.ts"],"sourcesContent":["import { itIf } from '../itIf'\n\ndescribe('itIf', () => {\n itIf(true)('should run', () => {\n expect(true).toBeTrue()\n })\n itIf(false)('should not run', () => {\n expect(true).toBeFalse()\n })\n})\n"],"mappings":";AAAA,kBAAqB;AAErB,SAAS,QAAQ,MAAM;AACrB,wBAAK,IAAI,EAAE,cAAc,MAAM;AAC7B,WAAO,IAAI,EAAE,SAAS;AAAA,EACxB,CAAC;AACD,wBAAK,KAAK,EAAE,kBAAkB,MAAM;AAClC,WAAO,IAAI,EAAE,UAAU;AAAA,EACzB,CAAC;AACH,CAAC;","names":[]}
@@ -1,10 +0,0 @@
1
- import { itIf } from "../itIf";
2
- describe("itIf", () => {
3
- itIf(true)("should run", () => {
4
- expect(true).toBeTrue();
5
- });
6
- itIf(false)("should not run", () => {
7
- expect(true).toBeFalse();
8
- });
9
- });
10
- //# sourceMappingURL=itIf.spec.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../../src/spec/itIf.spec.ts"],"sourcesContent":["import { itIf } from '../itIf'\n\ndescribe('itIf', () => {\n itIf(true)('should run', () => {\n expect(true).toBeTrue()\n })\n itIf(false)('should not run', () => {\n expect(true).toBeFalse()\n })\n})\n"],"mappings":"AAAA,SAAS,YAAY;AAErB,SAAS,QAAQ,MAAM;AACrB,OAAK,IAAI,EAAE,cAAc,MAAM;AAC7B,WAAO,IAAI,EAAE,SAAS;AAAA,EACxB,CAAC;AACD,OAAK,KAAK,EAAE,kBAAkB,MAAM;AAClC,WAAO,IAAI,EAAE,UAAU;AAAA,EACzB,CAAC;AACH,CAAC;","names":[]}
@@ -1,11 +0,0 @@
1
- "use strict";
2
- var import_testIf = require("../testIf");
3
- describe("testIf", () => {
4
- (0, import_testIf.testIf)(true)("should run", () => {
5
- expect(true).toBeTrue();
6
- });
7
- (0, import_testIf.testIf)(false)("should not run", () => {
8
- expect(true).toBeFalse();
9
- });
10
- });
11
- //# sourceMappingURL=testIf.spec.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../../src/spec/testIf.spec.ts"],"sourcesContent":["import { testIf } from '../testIf'\n\ndescribe('testIf', () => {\n testIf(true)('should run', () => {\n expect(true).toBeTrue()\n })\n testIf(false)('should not run', () => {\n expect(true).toBeFalse()\n })\n})\n"],"mappings":";AAAA,oBAAuB;AAEvB,SAAS,UAAU,MAAM;AACvB,4BAAO,IAAI,EAAE,cAAc,MAAM;AAC/B,WAAO,IAAI,EAAE,SAAS;AAAA,EACxB,CAAC;AACD,4BAAO,KAAK,EAAE,kBAAkB,MAAM;AACpC,WAAO,IAAI,EAAE,UAAU;AAAA,EACzB,CAAC;AACH,CAAC;","names":[]}
@@ -1,10 +0,0 @@
1
- import { testIf } from "../testIf";
2
- describe("testIf", () => {
3
- testIf(true)("should run", () => {
4
- expect(true).toBeTrue();
5
- });
6
- testIf(false)("should not run", () => {
7
- expect(true).toBeFalse();
8
- });
9
- });
10
- //# sourceMappingURL=testIf.spec.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../../src/spec/testIf.spec.ts"],"sourcesContent":["import { testIf } from '../testIf'\n\ndescribe('testIf', () => {\n testIf(true)('should run', () => {\n expect(true).toBeTrue()\n })\n testIf(false)('should not run', () => {\n expect(true).toBeFalse()\n })\n})\n"],"mappings":"AAAA,SAAS,cAAc;AAEvB,SAAS,UAAU,MAAM;AACvB,SAAO,IAAI,EAAE,cAAc,MAAM;AAC/B,WAAO,IAAI,EAAE,SAAS;AAAA,EACxB,CAAC;AACD,SAAO,KAAK,EAAE,kBAAkB,MAAM;AACpC,WAAO,IAAI,EAAE,UAAU;AAAA,EACzB,CAAC;AACH,CAAC;","names":[]}