hein 2.0.0-alpha.1 → 2.0.0-alpha.2
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/dist/{assert-CsN7srt-.d.ts → assert-CJsbhtgi.d.ts} +44 -3
- package/dist/assert-CJsbhtgi.d.ts.map +1 -0
- package/dist/{assert-ChQPKP5C.d.cts → assert-itrfuDRd.d.cts} +43 -5
- package/dist/assert-itrfuDRd.d.cts.map +1 -0
- package/dist/assert.d.cts +1 -2
- package/dist/assert.d.ts +1 -2
- package/dist/expect.types.d.cts +457 -3
- package/dist/expect.types.d.cts.map +1 -0
- package/dist/expect.types.d.ts +459 -3
- package/dist/expect.types.d.ts.map +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +458 -4
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.ts +458 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/assert-ChQPKP5C.d.cts.map +0 -1
- package/dist/assert-CsN7srt-.d.ts.map +0 -1
- package/dist/expect.types-CHYPdbCW.d.cts +0 -454
- package/dist/expect.types-CHYPdbCW.d.cts.map +0 -1
- package/dist/expect.types-nBq4Rg8e.d.ts +0 -454
- package/dist/expect.types-nBq4Rg8e.d.ts.map +0 -1
- package/dist/throws-BlzO4xvg.d.ts +0 -45
- package/dist/throws-BlzO4xvg.d.ts.map +0 -1
- package/dist/throws-CYLYG7gu.d.cts +0 -43
- package/dist/throws-CYLYG7gu.d.cts.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import "hein-assertion-utils";
|
|
2
2
|
|
|
3
3
|
//#region src/assert/deep-equal.d.ts
|
|
4
4
|
declare const deepEqual: <T>(actual: T, expected: T, partialOrMessage?: string | boolean, message?: string) => true | void, notDeepEqual: <T>(actual: T, expected: T, partialOrMessage?: string | boolean, message?: string) => true | void;
|
|
@@ -112,6 +112,12 @@ interface Includes {
|
|
|
112
112
|
}
|
|
113
113
|
declare const includes: Includes, notIncludes: Includes;
|
|
114
114
|
//#endregion
|
|
115
|
+
//#region src/utils/process-error.d.ts
|
|
116
|
+
interface Constructor<T = any> {
|
|
117
|
+
new (...args: any[]): T;
|
|
118
|
+
}
|
|
119
|
+
type ErrorPredicate = (error: Error) => boolean;
|
|
120
|
+
//#endregion
|
|
115
121
|
//#region src/assert/instance-of.d.ts
|
|
116
122
|
interface InstanceOf {
|
|
117
123
|
/**
|
|
@@ -153,6 +159,9 @@ interface IsEmpty {
|
|
|
153
159
|
}
|
|
154
160
|
declare const isEmpty: IsEmpty, notIsEmpty: IsEmpty;
|
|
155
161
|
//#endregion
|
|
162
|
+
//#region src/utils/get-type.d.ts
|
|
163
|
+
type ValueType = 'string' | 'number' | 'bigint' | 'boolean' | 'symbol' | 'undefined' | 'object' | 'function' | 'null' | 'NaN' | 'array';
|
|
164
|
+
//#endregion
|
|
156
165
|
//#region src/assert/is-type.d.ts
|
|
157
166
|
interface IsType {
|
|
158
167
|
/**
|
|
@@ -309,6 +318,38 @@ interface Rejects {
|
|
|
309
318
|
}
|
|
310
319
|
declare const rejects: Rejects, notRejects: Rejects;
|
|
311
320
|
//#endregion
|
|
321
|
+
//#region src/assert/throws.d.ts
|
|
322
|
+
type ThrowsCallback = () => unknown;
|
|
323
|
+
interface Throw {
|
|
324
|
+
/**
|
|
325
|
+
* check if function throws an error
|
|
326
|
+
* @param callback
|
|
327
|
+
* @example throws(() => { throw new Error('foo'); });
|
|
328
|
+
* @example throws(() => { throw new TypeError('foo'); }, TypeError);
|
|
329
|
+
*/
|
|
330
|
+
(callback: ThrowsCallback, message?: string): void;
|
|
331
|
+
/**
|
|
332
|
+
* check if function throws an error matching the constructor
|
|
333
|
+
* @param callback
|
|
334
|
+
* @example throws(() => { throw new TypeError('foo'); }, TypeError);
|
|
335
|
+
*/
|
|
336
|
+
(callback: ThrowsCallback, expectedError: Constructor, message?: string): void;
|
|
337
|
+
/**
|
|
338
|
+
* check if function throws an error matching the regex
|
|
339
|
+
* @param callback
|
|
340
|
+
* @example throws(() => { throw new Error('foo'); });
|
|
341
|
+
* @example throws(() => { throw new TypeError('foo'); }, /foo/);
|
|
342
|
+
*/
|
|
343
|
+
(callback: ThrowsCallback, expectedError: RegExp, message?: string): void;
|
|
344
|
+
/**
|
|
345
|
+
* check if function throws an error matching the predicate function
|
|
346
|
+
* @param callback
|
|
347
|
+
* @example throws(() => { throw new TypeError('foo'); }, (error) => error.message === 'foo');
|
|
348
|
+
*/
|
|
349
|
+
(callback: ThrowsCallback, expectedError: ErrorPredicate, message?: string): void;
|
|
350
|
+
}
|
|
351
|
+
declare const throws: Throw, notThrows: Throw;
|
|
352
|
+
//#endregion
|
|
312
353
|
//#region src/assert/deep-has-property.d.ts
|
|
313
354
|
interface DeepHasProperty {
|
|
314
355
|
/**
|
|
@@ -474,5 +515,5 @@ declare namespace assert_d_exports {
|
|
|
474
515
|
}
|
|
475
516
|
declare const assert: () => never;
|
|
476
517
|
//#endregion
|
|
477
|
-
export { assert, assert_d_exports, deepEqual, deepHasProperty, deepNotHasProperty, endsWith, equal, greaterThan, greaterThanEqual, hasKeys, hasMembers, hasProperty, hasSize, inBallpark, includes, instanceOf, isAfter, isBefore, isBetween, isEmpty, isType, lessThan, lessThanEqual, match, notAfter, notBefore, notBetween, notDeepEqual, notEndsWith, notEqual, notGreaterThan, notGreaterThanEqual, notHasKeys, notHasMembers, notHasProperty, notHasSize, notInBallpark, notIncludes, notInstanceOf, notIsEmpty, notIsType, notLessThan, notLessThanEqual, notMatch, notRejects, notRoundTo, notStartsWith, rejects, roundTo, startsWith };
|
|
478
|
-
//# sourceMappingURL=assert-
|
|
518
|
+
export { Constructor, ErrorPredicate, ThrowsCallback, ValueType, assert, assert_d_exports, deepEqual, deepHasProperty, deepNotHasProperty, endsWith, equal, greaterThan, greaterThanEqual, hasKeys, hasMembers, hasProperty, hasSize, inBallpark, includes, instanceOf, isAfter, isBefore, isBetween, isEmpty, isType, lessThan, lessThanEqual, match, notAfter, notBefore, notBetween, notDeepEqual, notEndsWith, notEqual, notGreaterThan, notGreaterThanEqual, notHasKeys, notHasMembers, notHasProperty, notHasSize, notInBallpark, notIncludes, notInstanceOf, notIsEmpty, notIsType, notLessThan, notLessThanEqual, notMatch, notRejects, notRoundTo, notStartsWith, notThrows, rejects, roundTo, startsWith, throws };
|
|
519
|
+
//# sourceMappingURL=assert-CJsbhtgi.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"assert-CJsbhtgi.d.ts","names":[],"sources":["../src/assert/deep-equal.ts","../src/assert/equal.ts","../src/assert/greater-than.ts","../src/assert/greater-than-equal.ts","../src/assert/has-property.ts","../src/assert/has-size.ts","../src/assert/includes.ts","../src/utils/process-error.ts","../src/assert/instance-of.ts","../src/assert/is-empty.ts","../src/utils/get-type.ts","../src/assert/is-type.ts","../src/assert/less-than.ts","../src/assert/less-than-equal.ts","../src/assert/match.ts","../src/assert/rejects.ts","../src/assert/throws.ts","../src/assert/deep-has-property.ts","../src/assert/starts-with.ts","../src/assert/ends-with.ts","../src/assert/is-before.ts","../src/assert/is-after.ts","../src/assert/is-between.ts","../src/assert/in-ballpark.ts","../src/assert/round-to.ts","../src/assert/has-members.ts","../src/assert/has-keys.ts","../src/assert.ts"],"sourcesContent":[],"mappings":"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"}
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
import { Constructor, ErrorPredicate, ValueType, notThrows, throws } from "./throws-CYLYG7gu.cjs";
|
|
2
|
-
|
|
3
|
-
//#region rolldown:runtime
|
|
4
1
|
//#endregion
|
|
5
2
|
//#region src/assert/deep-equal.d.ts
|
|
6
3
|
declare const deepEqual: <T>(actual: T, expected: T, partialOrMessage?: string | boolean, message?: string) => true | void, notDeepEqual: <T>(actual: T, expected: T, partialOrMessage?: string | boolean, message?: string) => true | void;
|
|
@@ -114,6 +111,12 @@ interface Includes {
|
|
|
114
111
|
}
|
|
115
112
|
declare const includes: Includes, notIncludes: Includes;
|
|
116
113
|
//#endregion
|
|
114
|
+
//#region src/utils/process-error.d.ts
|
|
115
|
+
interface Constructor<T = any> {
|
|
116
|
+
new (...args: any[]): T;
|
|
117
|
+
}
|
|
118
|
+
type ErrorPredicate = (error: Error) => boolean;
|
|
119
|
+
//#endregion
|
|
117
120
|
//#region src/assert/instance-of.d.ts
|
|
118
121
|
interface InstanceOf {
|
|
119
122
|
/**
|
|
@@ -155,6 +158,9 @@ interface IsEmpty {
|
|
|
155
158
|
}
|
|
156
159
|
declare const isEmpty: IsEmpty, notIsEmpty: IsEmpty;
|
|
157
160
|
//#endregion
|
|
161
|
+
//#region src/utils/get-type.d.ts
|
|
162
|
+
type ValueType = 'string' | 'number' | 'bigint' | 'boolean' | 'symbol' | 'undefined' | 'object' | 'function' | 'null' | 'NaN' | 'array';
|
|
163
|
+
//#endregion
|
|
158
164
|
//#region src/assert/is-type.d.ts
|
|
159
165
|
interface IsType {
|
|
160
166
|
/**
|
|
@@ -311,6 +317,38 @@ interface Rejects {
|
|
|
311
317
|
}
|
|
312
318
|
declare const rejects: Rejects, notRejects: Rejects;
|
|
313
319
|
//#endregion
|
|
320
|
+
//#region src/assert/throws.d.ts
|
|
321
|
+
type ThrowsCallback = () => unknown;
|
|
322
|
+
interface Throw {
|
|
323
|
+
/**
|
|
324
|
+
* check if function throws an error
|
|
325
|
+
* @param callback
|
|
326
|
+
* @example throws(() => { throw new Error('foo'); });
|
|
327
|
+
* @example throws(() => { throw new TypeError('foo'); }, TypeError);
|
|
328
|
+
*/
|
|
329
|
+
(callback: ThrowsCallback, message?: string): void;
|
|
330
|
+
/**
|
|
331
|
+
* check if function throws an error matching the constructor
|
|
332
|
+
* @param callback
|
|
333
|
+
* @example throws(() => { throw new TypeError('foo'); }, TypeError);
|
|
334
|
+
*/
|
|
335
|
+
(callback: ThrowsCallback, expectedError: Constructor, message?: string): void;
|
|
336
|
+
/**
|
|
337
|
+
* check if function throws an error matching the regex
|
|
338
|
+
* @param callback
|
|
339
|
+
* @example throws(() => { throw new Error('foo'); });
|
|
340
|
+
* @example throws(() => { throw new TypeError('foo'); }, /foo/);
|
|
341
|
+
*/
|
|
342
|
+
(callback: ThrowsCallback, expectedError: RegExp, message?: string): void;
|
|
343
|
+
/**
|
|
344
|
+
* check if function throws an error matching the predicate function
|
|
345
|
+
* @param callback
|
|
346
|
+
* @example throws(() => { throw new TypeError('foo'); }, (error) => error.message === 'foo');
|
|
347
|
+
*/
|
|
348
|
+
(callback: ThrowsCallback, expectedError: ErrorPredicate, message?: string): void;
|
|
349
|
+
}
|
|
350
|
+
declare const throws: Throw, notThrows: Throw;
|
|
351
|
+
//#endregion
|
|
314
352
|
//#region src/assert/deep-has-property.d.ts
|
|
315
353
|
interface DeepHasProperty {
|
|
316
354
|
/**
|
|
@@ -476,5 +514,5 @@ declare namespace assert_d_exports {
|
|
|
476
514
|
}
|
|
477
515
|
declare const assert: () => never;
|
|
478
516
|
//#endregion
|
|
479
|
-
export { assert, assert_d_exports, deepEqual, deepHasProperty, deepNotHasProperty, endsWith, equal, greaterThan, greaterThanEqual, hasKeys, hasMembers, hasProperty, hasSize, inBallpark, includes, instanceOf, isAfter, isBefore, isBetween, isEmpty, isType, lessThan, lessThanEqual, match, notAfter, notBefore, notBetween, notDeepEqual, notEndsWith, notEqual, notGreaterThan, notGreaterThanEqual, notHasKeys, notHasMembers, notHasProperty, notHasSize, notInBallpark, notIncludes, notInstanceOf, notIsEmpty, notIsType, notLessThan, notLessThanEqual, notMatch, notRejects, notRoundTo, notStartsWith, rejects, roundTo, startsWith };
|
|
480
|
-
//# sourceMappingURL=assert-
|
|
517
|
+
export { Constructor, ErrorPredicate, ThrowsCallback, ValueType, assert, assert_d_exports, deepEqual, deepHasProperty, deepNotHasProperty, endsWith, equal, greaterThan, greaterThanEqual, hasKeys, hasMembers, hasProperty, hasSize, inBallpark, includes, instanceOf, isAfter, isBefore, isBetween, isEmpty, isType, lessThan, lessThanEqual, match, notAfter, notBefore, notBetween, notDeepEqual, notEndsWith, notEqual, notGreaterThan, notGreaterThanEqual, notHasKeys, notHasMembers, notHasProperty, notHasSize, notInBallpark, notIncludes, notInstanceOf, notIsEmpty, notIsType, notLessThan, notLessThanEqual, notMatch, notRejects, notRoundTo, notStartsWith, notThrows, rejects, roundTo, startsWith, throws };
|
|
518
|
+
//# sourceMappingURL=assert-itrfuDRd.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"assert-itrfuDRd.d.cts","names":[],"sources":["../src/assert/deep-equal.ts","../src/assert/equal.ts","../src/assert/greater-than.ts","../src/assert/greater-than-equal.ts","../src/assert/has-property.ts","../src/assert/has-size.ts","../src/assert/includes.ts","../src/utils/process-error.ts","../src/assert/instance-of.ts","../src/assert/is-empty.ts","../src/utils/get-type.ts","../src/assert/is-type.ts","../src/assert/less-than.ts","../src/assert/less-than-equal.ts","../src/assert/match.ts","../src/assert/rejects.ts","../src/assert/throws.ts","../src/assert/deep-has-property.ts","../src/assert/starts-with.ts","../src/assert/ends-with.ts","../src/assert/is-before.ts","../src/assert/is-after.ts","../src/assert/is-between.ts","../src/assert/in-ballpark.ts","../src/assert/round-to.ts","../src/assert/has-members.ts","../src/assert/has-keys.ts","../src/assert.ts"],"sourcesContent":[],"mappings":"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"}
|
package/dist/assert.d.cts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
import { assert, deepEqual, deepHasProperty, deepNotHasProperty, endsWith, equal, greaterThan, greaterThanEqual, hasKeys, hasMembers, hasProperty, hasSize, inBallpark, includes, instanceOf, isAfter, isBefore, isBetween, isEmpty, isType, lessThan, lessThanEqual, match, notAfter, notBefore, notBetween, notDeepEqual, notEndsWith, notEqual, notGreaterThan, notGreaterThanEqual, notHasKeys, notHasMembers, notHasProperty, notHasSize, notInBallpark, notIncludes, notInstanceOf, notIsEmpty, notIsType, notLessThan, notLessThanEqual, notMatch, notRejects, notRoundTo, notStartsWith, rejects, roundTo, startsWith } from "./assert-
|
|
2
|
-
import { notThrows, throws } from "./throws-CYLYG7gu.cjs";
|
|
1
|
+
import { assert, deepEqual, deepHasProperty, deepNotHasProperty, endsWith, equal, greaterThan, greaterThanEqual, hasKeys, hasMembers, hasProperty, hasSize, inBallpark, includes, instanceOf, isAfter, isBefore, isBetween, isEmpty, isType, lessThan, lessThanEqual, match, notAfter, notBefore, notBetween, notDeepEqual, notEndsWith, notEqual, notGreaterThan, notGreaterThanEqual, notHasKeys, notHasMembers, notHasProperty, notHasSize, notInBallpark, notIncludes, notInstanceOf, notIsEmpty, notIsType, notLessThan, notLessThanEqual, notMatch, notRejects, notRoundTo, notStartsWith, notThrows, rejects, roundTo, startsWith, throws } from "./assert-itrfuDRd.cjs";
|
|
3
2
|
export { assert, deepEqual, deepHasProperty, deepNotHasProperty, endsWith, equal, greaterThan, greaterThanEqual, hasKeys, hasMembers, hasProperty, hasSize, inBallpark, includes, instanceOf, isAfter, isBefore, isBetween, isEmpty, isType, lessThan, lessThanEqual, match, notAfter, notBefore, notBetween, notDeepEqual, notEndsWith, notEqual, notGreaterThan, notGreaterThanEqual, notHasKeys, notHasMembers, notHasProperty, notHasSize, notInBallpark, notIncludes, notInstanceOf, notIsEmpty, notIsType, notLessThan, notLessThanEqual, notMatch, notRejects, notRoundTo, notStartsWith, notThrows, rejects, roundTo, startsWith, throws };
|
package/dist/assert.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
import { assert, deepEqual, deepHasProperty, deepNotHasProperty, endsWith, equal, greaterThan, greaterThanEqual, hasKeys, hasMembers, hasProperty, hasSize, inBallpark, includes, instanceOf, isAfter, isBefore, isBetween, isEmpty, isType, lessThan, lessThanEqual, match, notAfter, notBefore, notBetween, notDeepEqual, notEndsWith, notEqual, notGreaterThan, notGreaterThanEqual, notHasKeys, notHasMembers, notHasProperty, notHasSize, notInBallpark, notIncludes, notInstanceOf, notIsEmpty, notIsType, notLessThan, notLessThanEqual, notMatch, notRejects, notRoundTo, notStartsWith, rejects, roundTo, startsWith } from "./assert-
|
|
2
|
-
import { notThrows, throws } from "./throws-BlzO4xvg.js";
|
|
1
|
+
import { assert, deepEqual, deepHasProperty, deepNotHasProperty, endsWith, equal, greaterThan, greaterThanEqual, hasKeys, hasMembers, hasProperty, hasSize, inBallpark, includes, instanceOf, isAfter, isBefore, isBetween, isEmpty, isType, lessThan, lessThanEqual, match, notAfter, notBefore, notBetween, notDeepEqual, notEndsWith, notEqual, notGreaterThan, notGreaterThanEqual, notHasKeys, notHasMembers, notHasProperty, notHasSize, notInBallpark, notIncludes, notInstanceOf, notIsEmpty, notIsType, notLessThan, notLessThanEqual, notMatch, notRejects, notRoundTo, notStartsWith, notThrows, rejects, roundTo, startsWith, throws } from "./assert-CJsbhtgi.js";
|
|
3
2
|
export { assert, deepEqual, deepHasProperty, deepNotHasProperty, endsWith, equal, greaterThan, greaterThanEqual, hasKeys, hasMembers, hasProperty, hasSize, inBallpark, includes, instanceOf, isAfter, isBefore, isBetween, isEmpty, isType, lessThan, lessThanEqual, match, notAfter, notBefore, notBetween, notDeepEqual, notEndsWith, notEqual, notGreaterThan, notGreaterThanEqual, notHasKeys, notHasMembers, notHasProperty, notHasSize, notInBallpark, notIncludes, notInstanceOf, notIsEmpty, notIsType, notLessThan, notLessThanEqual, notMatch, notRejects, notRoundTo, notStartsWith, notThrows, rejects, roundTo, startsWith, throws };
|
package/dist/expect.types.d.cts
CHANGED
|
@@ -1,3 +1,457 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
//#region src/utils/process-error.d.ts
|
|
2
|
+
interface Constructor<T = any> {
|
|
3
|
+
new (...args: any[]): T;
|
|
4
|
+
}
|
|
5
|
+
type ErrorPredicate = (error: Error) => boolean;
|
|
6
|
+
//#endregion
|
|
7
|
+
//#region src/assert/throws.d.ts
|
|
8
|
+
type ThrowsCallback = () => unknown;
|
|
9
|
+
//#endregion
|
|
10
|
+
//#region src/utils/fail.d.ts
|
|
11
|
+
/**
|
|
12
|
+
* Throw an AssertionError
|
|
13
|
+
* @param {string} message - The message to pass to the AssertionError
|
|
14
|
+
*/
|
|
15
|
+
declare const fail: (message?: string) => never;
|
|
16
|
+
//#endregion
|
|
17
|
+
//#region src/utils/types.d.ts
|
|
18
|
+
type DeepPartial<T> = { [P in keyof T]?: T[P] | (T[P] extends Array<infer U> ? Array<DeepPartial<U>> : DeepPartial<T[P]>) };
|
|
19
|
+
//#endregion
|
|
20
|
+
//#region src/utils/get-type.d.ts
|
|
21
|
+
type ValueType = 'string' | 'number' | 'bigint' | 'boolean' | 'symbol' | 'undefined' | 'object' | 'function' | 'null' | 'NaN' | 'array';
|
|
22
|
+
//#endregion
|
|
23
|
+
//#region src/mixins.d.ts
|
|
24
|
+
interface State<T> {
|
|
25
|
+
inverted?: boolean;
|
|
26
|
+
value?: T;
|
|
27
|
+
getProperty?: (value: T) => any;
|
|
28
|
+
deep?: boolean;
|
|
29
|
+
same?: boolean;
|
|
30
|
+
ordered?: boolean;
|
|
31
|
+
partial?: boolean;
|
|
32
|
+
every?: boolean;
|
|
33
|
+
}
|
|
34
|
+
//#endregion
|
|
35
|
+
//#region src/expect.types.d.ts
|
|
36
|
+
interface ValueExpect<T> {
|
|
37
|
+
to: this;
|
|
38
|
+
be: this;
|
|
39
|
+
a: this;
|
|
40
|
+
an: this;
|
|
41
|
+
not: this;
|
|
42
|
+
and: this;
|
|
43
|
+
have: this;
|
|
44
|
+
in: this;
|
|
45
|
+
of: this;
|
|
46
|
+
/**
|
|
47
|
+
* Use deep equality for object checks
|
|
48
|
+
*/
|
|
49
|
+
deep: this;
|
|
50
|
+
/**
|
|
51
|
+
* check for deep equality
|
|
52
|
+
*/
|
|
53
|
+
eql(value: T, message?: string): this;
|
|
54
|
+
partially: ValueExpect<DeepPartial<T>>;
|
|
55
|
+
/**
|
|
56
|
+
* check for === equality, NaN is considered equal to NaN
|
|
57
|
+
*/
|
|
58
|
+
equal(value: T, message?: string): this;
|
|
59
|
+
/**
|
|
60
|
+
* check for === equality, NaN is considered equal to NaN
|
|
61
|
+
*/
|
|
62
|
+
eq(value: T, message?: string): this;
|
|
63
|
+
/**
|
|
64
|
+
* check if value has a property
|
|
65
|
+
* @param property a property in the object. When combined with .deep. can be a path like 'a.b.c'
|
|
66
|
+
* @example expect({a: {b: {c: 1}}}).to.have.property('a.b.c');
|
|
67
|
+
* @example expect({a: {b: {c: 1}}}).to.have.deep.property('[0].a.b.c');
|
|
68
|
+
*/
|
|
69
|
+
property<K extends keyof T>(property: K): this;
|
|
70
|
+
/**
|
|
71
|
+
* check if value has a property
|
|
72
|
+
* @param property a property in the object. When combined with .deep. can be a path like 'a.b.c'
|
|
73
|
+
* @example expect({a: {b: {c: 1}}}).to.have.property('a.b.c');
|
|
74
|
+
* @example expect({a: {b: {c: 1}}}).to.have.deep.property('[0].a.b.c');
|
|
75
|
+
*/
|
|
76
|
+
property(property: string): this;
|
|
77
|
+
/**
|
|
78
|
+
* check if value has a property
|
|
79
|
+
* @param property a property in the object. When combined with .deep. can be a path like 'a.b.c'
|
|
80
|
+
* @param value
|
|
81
|
+
* @example expect({a: {b: {c: 1}}}).to.have.property('a.b.c');
|
|
82
|
+
* @example expect({a: {b: {c: 1}}}).to.have.deep.property('[0].a.b.c');
|
|
83
|
+
*/
|
|
84
|
+
property<K extends keyof T>(property: K, value?: any): this;
|
|
85
|
+
/**
|
|
86
|
+
* check if value has a property
|
|
87
|
+
* @param property a property in the object. When combined with .deep. can be a path like 'a.b.c'
|
|
88
|
+
* @param value
|
|
89
|
+
* @example expect({a: {b: {c: 1}}}).to.have.property('a.b.c');
|
|
90
|
+
* @example expect({a: {b: {c: 1}}}).to.have.deep.property('[0].a.b.c');
|
|
91
|
+
*/
|
|
92
|
+
property(property: string, value?: any): this;
|
|
93
|
+
/**
|
|
94
|
+
* check if instance of value
|
|
95
|
+
* @param constructor - The constructor function to check against
|
|
96
|
+
*/
|
|
97
|
+
instanceOf(constructor: Constructor): this;
|
|
98
|
+
/**
|
|
99
|
+
* check if value is null
|
|
100
|
+
*/
|
|
101
|
+
null(): this;
|
|
102
|
+
/**
|
|
103
|
+
* check if value is undefined
|
|
104
|
+
*/
|
|
105
|
+
undefined(): this;
|
|
106
|
+
/**
|
|
107
|
+
* check if value is of certain type
|
|
108
|
+
*/
|
|
109
|
+
type(type: ValueType): this;
|
|
110
|
+
}
|
|
111
|
+
type ArrayType<T, DT = never> = T extends (infer U)[] ? U : DT;
|
|
112
|
+
interface ArrayExpect<T> extends ValueExpect<T>, ObjectExpect<T> {
|
|
113
|
+
length: NumberExpect<number> & this;
|
|
114
|
+
array(): this;
|
|
115
|
+
every: GetExpectType<ArrayType<T>>;
|
|
116
|
+
/**
|
|
117
|
+
* check if array includes element(s)
|
|
118
|
+
*/
|
|
119
|
+
include(...elements: ArrayType<T>[]): this;
|
|
120
|
+
/**
|
|
121
|
+
* check if array includes element(s)
|
|
122
|
+
*/
|
|
123
|
+
contain(...elements: ArrayType<T>[]): this;
|
|
124
|
+
/**
|
|
125
|
+
* check for array length
|
|
126
|
+
*/
|
|
127
|
+
lengthOf(length: number, message?: string): this;
|
|
128
|
+
/**
|
|
129
|
+
* check that the members in second array are present in the first one
|
|
130
|
+
*/
|
|
131
|
+
members(value: ArrayType<T, any>[], message?: string): this;
|
|
132
|
+
same: ArrayExpect<T>;
|
|
133
|
+
ordered: ArrayExpect<T>;
|
|
134
|
+
/**
|
|
135
|
+
* Use partial matching for objects
|
|
136
|
+
* @example
|
|
137
|
+
* expect({ a: 1, b: 2 }).to.partially.eql({ a: 1 });
|
|
138
|
+
*/
|
|
139
|
+
partially: ArrayExpect<DeepPartial<T>>;
|
|
140
|
+
/**
|
|
141
|
+
* check if value is an array
|
|
142
|
+
*/
|
|
143
|
+
array(): this;
|
|
144
|
+
}
|
|
145
|
+
interface BigIntExpect<T = bigint> extends NumberExpect<T> {
|
|
146
|
+
/**
|
|
147
|
+
* check if value is a bigint
|
|
148
|
+
*/
|
|
149
|
+
bigint(): this;
|
|
150
|
+
}
|
|
151
|
+
interface BooleanExpect<T = boolean> extends ValueExpect<T> {
|
|
152
|
+
/**
|
|
153
|
+
* check if value is a boolean
|
|
154
|
+
*/
|
|
155
|
+
boolean(): this;
|
|
156
|
+
/**
|
|
157
|
+
* check if value is true
|
|
158
|
+
*/
|
|
159
|
+
true(): this;
|
|
160
|
+
/**
|
|
161
|
+
* check if value is false
|
|
162
|
+
*/
|
|
163
|
+
false(): this;
|
|
164
|
+
}
|
|
165
|
+
interface DateExpect<T = Date> extends ValueExpect<T>, ObjectExpect<T> {
|
|
166
|
+
/**
|
|
167
|
+
* check if date is after other date
|
|
168
|
+
* @param date
|
|
169
|
+
*/
|
|
170
|
+
after(date: Date): this;
|
|
171
|
+
/**
|
|
172
|
+
* check if date is before other date
|
|
173
|
+
* @param date
|
|
174
|
+
*/
|
|
175
|
+
before(date: Date): this;
|
|
176
|
+
/**
|
|
177
|
+
* check if date is between other dates
|
|
178
|
+
* @param start
|
|
179
|
+
* @param end
|
|
180
|
+
*/
|
|
181
|
+
between(start: Date, end: Date, inclusive?: boolean): this;
|
|
182
|
+
/**
|
|
183
|
+
* check if actual is greater than or equal to expected
|
|
184
|
+
*/
|
|
185
|
+
greaterThanOrEqual(value: T): this;
|
|
186
|
+
/**
|
|
187
|
+
* check if actual is greater than or equal to expected
|
|
188
|
+
*/
|
|
189
|
+
gte(value: T): this;
|
|
190
|
+
/**
|
|
191
|
+
* check if actual is greater than or equal to expected
|
|
192
|
+
*/
|
|
193
|
+
atLeast(value: T): this;
|
|
194
|
+
/**
|
|
195
|
+
* check if actual is greater than expected
|
|
196
|
+
*/
|
|
197
|
+
greaterThan(value: T): this;
|
|
198
|
+
/**
|
|
199
|
+
* check if actual is greater than expected
|
|
200
|
+
*/
|
|
201
|
+
gt(value: T): this;
|
|
202
|
+
/**
|
|
203
|
+
* check if actual is greater than expected
|
|
204
|
+
*/
|
|
205
|
+
above(value: T): this;
|
|
206
|
+
/**
|
|
207
|
+
* check if value is an instance of Date
|
|
208
|
+
*/
|
|
209
|
+
Date(): this;
|
|
210
|
+
/**
|
|
211
|
+
* check if actual is less than or equal to expected
|
|
212
|
+
*/
|
|
213
|
+
lessThanOrEqual(value: T): this;
|
|
214
|
+
/**
|
|
215
|
+
* check if actual is less than or equal to expected
|
|
216
|
+
*/
|
|
217
|
+
lte(value: T): this;
|
|
218
|
+
/**
|
|
219
|
+
* check if actual is less than or equal to expected
|
|
220
|
+
*/
|
|
221
|
+
atMost(value: T): this;
|
|
222
|
+
/**
|
|
223
|
+
* check if actual is less than expected
|
|
224
|
+
*/
|
|
225
|
+
lessThan(value: T): this;
|
|
226
|
+
/**
|
|
227
|
+
* check if actual is less than expected
|
|
228
|
+
*/
|
|
229
|
+
lt(value: T): this;
|
|
230
|
+
/**
|
|
231
|
+
* check if actual is less than expected
|
|
232
|
+
*/
|
|
233
|
+
below(value: T): this;
|
|
234
|
+
}
|
|
235
|
+
interface FunctionExpect<T> extends ValueExpect<T> {
|
|
236
|
+
/**
|
|
237
|
+
* check if function throws
|
|
238
|
+
* @param message
|
|
239
|
+
*/
|
|
240
|
+
throw(message?: string): this;
|
|
241
|
+
throw(matcher: RegExp | Constructor<Error> | ErrorPredicate, message?: string): this;
|
|
242
|
+
/**
|
|
243
|
+
* check if value is a function
|
|
244
|
+
*/
|
|
245
|
+
function(): this;
|
|
246
|
+
}
|
|
247
|
+
interface NumberExpect<T = number> extends ValueExpect<T> {
|
|
248
|
+
/**
|
|
249
|
+
* check if number close enough (default 10%)
|
|
250
|
+
* @param ballpark
|
|
251
|
+
* @param [multiplier=10] - a number between 0 and 1 (exclusive). 0.1 (default) means 10% difference is allowed.
|
|
252
|
+
*/
|
|
253
|
+
ballpark(ballpark: number, multiplier?: number): this;
|
|
254
|
+
/**
|
|
255
|
+
* check if number is between other numbers
|
|
256
|
+
* @param start
|
|
257
|
+
* @param end
|
|
258
|
+
* @param inclusive
|
|
259
|
+
*/
|
|
260
|
+
between(start: number, end: number, inclusive?: boolean): this;
|
|
261
|
+
/**
|
|
262
|
+
* check if actual is greater than or equal to expected
|
|
263
|
+
*/
|
|
264
|
+
greaterThanOrEqual(value: T): this;
|
|
265
|
+
/**
|
|
266
|
+
* check if actual is greater than or equal to expected
|
|
267
|
+
*/
|
|
268
|
+
gte(value: T): this;
|
|
269
|
+
/**
|
|
270
|
+
* check if actual is greater than or equal to expected
|
|
271
|
+
*/
|
|
272
|
+
atLeast(value: T): this;
|
|
273
|
+
/**
|
|
274
|
+
* check if actual is greater than expected
|
|
275
|
+
*/
|
|
276
|
+
greaterThan(value: T): this;
|
|
277
|
+
/**
|
|
278
|
+
* check if actual is greater than expected
|
|
279
|
+
*/
|
|
280
|
+
gt(value: T): this;
|
|
281
|
+
/**
|
|
282
|
+
* check if actual is greater than expected
|
|
283
|
+
*/
|
|
284
|
+
above(value: T): this;
|
|
285
|
+
/**
|
|
286
|
+
* check if actual is less than or equal to expected
|
|
287
|
+
*/
|
|
288
|
+
lessThanOrEqual(value: T): this;
|
|
289
|
+
/**
|
|
290
|
+
* check if actual is less than or equal to expected
|
|
291
|
+
*/
|
|
292
|
+
lte(value: T): this;
|
|
293
|
+
/**
|
|
294
|
+
* check if actual is less than or equal to expected
|
|
295
|
+
*/
|
|
296
|
+
atMost(value: T): this;
|
|
297
|
+
/**
|
|
298
|
+
* check if actual is less than expected
|
|
299
|
+
*/
|
|
300
|
+
lessThan(value: T): this;
|
|
301
|
+
/**
|
|
302
|
+
* check if actual is less than expected
|
|
303
|
+
*/
|
|
304
|
+
lt(value: T): this;
|
|
305
|
+
/**
|
|
306
|
+
* check if actual is less than expected
|
|
307
|
+
*/
|
|
308
|
+
below(value: T): this;
|
|
309
|
+
/**
|
|
310
|
+
* check if number close enough (default 10%)
|
|
311
|
+
* @param target
|
|
312
|
+
* @param decimal defaults to 0, can be negative if trying to round down to nearest 10, 100, etc
|
|
313
|
+
*/
|
|
314
|
+
roundTo(target: number, decimal?: number): this;
|
|
315
|
+
/**
|
|
316
|
+
* check if value is a number
|
|
317
|
+
*/
|
|
318
|
+
number(): this;
|
|
319
|
+
/**
|
|
320
|
+
* check if value is a NaN
|
|
321
|
+
*/
|
|
322
|
+
NaN(): this;
|
|
323
|
+
}
|
|
324
|
+
type InferMapKeys<T> = T extends Map<infer K, any> ? K : never;
|
|
325
|
+
interface MapExpect<T> extends ValueExpect<T> {
|
|
326
|
+
size: NumberExpect<number>;
|
|
327
|
+
/**
|
|
328
|
+
* check if Map is empty
|
|
329
|
+
*/
|
|
330
|
+
empty(message?: string): this;
|
|
331
|
+
/**
|
|
332
|
+
* check if value is an instance of Map
|
|
333
|
+
*/
|
|
334
|
+
Map(): this;
|
|
335
|
+
/**
|
|
336
|
+
* Check if value has keys
|
|
337
|
+
*/
|
|
338
|
+
keys<K extends InferMapKeys<T>>(keys: K[] | K): this;
|
|
339
|
+
/**
|
|
340
|
+
* check for Map to have a certain size
|
|
341
|
+
*/
|
|
342
|
+
sizeOf(size: number, message?: string): this;
|
|
343
|
+
}
|
|
344
|
+
interface ObjectExpect<T> extends ValueExpect<T> {
|
|
345
|
+
size: NumberExpect<number>;
|
|
346
|
+
/**
|
|
347
|
+
* check if object/array/Map/Set is empty
|
|
348
|
+
*/
|
|
349
|
+
empty(message?: string): this;
|
|
350
|
+
/**
|
|
351
|
+
* exclude keys from object to be compared further down the chain
|
|
352
|
+
* @param keys
|
|
353
|
+
*/
|
|
354
|
+
excluding<K extends keyof T>(...keys: K[]): ObjectExpect<Omit<T, K>>;
|
|
355
|
+
/**
|
|
356
|
+
* check if value is an instance of Map
|
|
357
|
+
*/
|
|
358
|
+
Map(): this;
|
|
359
|
+
/**
|
|
360
|
+
* check if value is an instance of Set
|
|
361
|
+
*/
|
|
362
|
+
Set(): this;
|
|
363
|
+
/**
|
|
364
|
+
* check if value is an instance of WeakMap
|
|
365
|
+
*/
|
|
366
|
+
WeakMap(): this;
|
|
367
|
+
/**
|
|
368
|
+
* check if value is an instance of WeakSet
|
|
369
|
+
*/
|
|
370
|
+
WeakSet(): this;
|
|
371
|
+
/**
|
|
372
|
+
* Check if value has keys
|
|
373
|
+
*/
|
|
374
|
+
keys<K extends keyof T>(keys: K[] | K): this;
|
|
375
|
+
/**
|
|
376
|
+
* check for object/array/Map/Set/string to have a certain size
|
|
377
|
+
*/
|
|
378
|
+
sizeOf(size: number, message?: string): this;
|
|
379
|
+
/**
|
|
380
|
+
* check if value is a plain object
|
|
381
|
+
*/
|
|
382
|
+
object(): this;
|
|
383
|
+
}
|
|
384
|
+
interface PromiseExpect<T> extends ValueExpect<T> {
|
|
385
|
+
/**
|
|
386
|
+
* check if promise rejects
|
|
387
|
+
* @param message
|
|
388
|
+
*/
|
|
389
|
+
reject(message?: string): Promise<void>;
|
|
390
|
+
reject(matcher: RegExp | Constructor<Error> | ErrorPredicate): Promise<void>;
|
|
391
|
+
}
|
|
392
|
+
interface StringExpect<T = string> extends ValueExpect<T> {
|
|
393
|
+
/**
|
|
394
|
+
* check if string ends with other string
|
|
395
|
+
* @param start
|
|
396
|
+
* @example endsWith('foo', 'o');
|
|
397
|
+
*/
|
|
398
|
+
endWith(end: string): this;
|
|
399
|
+
/**
|
|
400
|
+
* check if string includes substring(s)
|
|
401
|
+
*/
|
|
402
|
+
include(...substrings: string[]): this;
|
|
403
|
+
/**
|
|
404
|
+
* check if string includes substring(s)
|
|
405
|
+
*/
|
|
406
|
+
contain(...substrings: string[]): this;
|
|
407
|
+
/**
|
|
408
|
+
* check for string to have a certain size
|
|
409
|
+
*/
|
|
410
|
+
lengthOf(length: number, message?: string): this;
|
|
411
|
+
/**
|
|
412
|
+
* check if string matches regex
|
|
413
|
+
*/
|
|
414
|
+
match(regex: RegExp): this;
|
|
415
|
+
/**
|
|
416
|
+
* check if string starts with other string
|
|
417
|
+
* @param start
|
|
418
|
+
* @example startsWith('foo', 'f');
|
|
419
|
+
*/
|
|
420
|
+
startWith(start: string): this;
|
|
421
|
+
/**
|
|
422
|
+
* check if value is a string
|
|
423
|
+
*/
|
|
424
|
+
string(): this;
|
|
425
|
+
}
|
|
426
|
+
interface SymbolExpect<T> extends ValueExpect<T> {
|
|
427
|
+
/**
|
|
428
|
+
* check if value is a symbol
|
|
429
|
+
*/
|
|
430
|
+
symbol(): this;
|
|
431
|
+
}
|
|
432
|
+
declare const LooseSymbol: unique symbol;
|
|
433
|
+
interface Loose {
|
|
434
|
+
[LooseSymbol]: true;
|
|
435
|
+
}
|
|
436
|
+
type AllExpects<T> = ArrayExpect<T> & BigIntExpect<T> & BooleanExpect<T> & DateExpect<T> & FunctionExpect<T> & NumberExpect<T> & MapExpect<T> & ObjectExpect<T> & PromiseExpect<T> & StringExpect<T> & SymbolExpect<T> & ValueExpect<T>;
|
|
437
|
+
interface Expect {
|
|
438
|
+
<T extends Loose>(actual: T): AllExpects<T>;
|
|
439
|
+
<T extends ThrowsCallback>(actual: T): FunctionExpect<T>;
|
|
440
|
+
<T extends Promise<any>>(actual: T): PromiseExpect<T>;
|
|
441
|
+
<T extends any[]>(actual: T): ArrayExpect<T>;
|
|
442
|
+
<T extends Date>(actual: T): DateExpect<T>;
|
|
443
|
+
<T extends Map<any, any>>(actual: T): MapExpect<T>;
|
|
444
|
+
<T extends Record<string, any>>(actual: T): ObjectExpect<T>;
|
|
445
|
+
<T extends number>(actual: T): NumberExpect;
|
|
446
|
+
<T extends bigint>(actual: T): BigIntExpect;
|
|
447
|
+
<T extends boolean>(actual: T): BooleanExpect;
|
|
448
|
+
<T extends string>(actual: T): StringExpect;
|
|
449
|
+
<T extends symbol>(actual: T): SymbolExpect<T>;
|
|
450
|
+
<T>(actual: T): ValueExpect<T>;
|
|
451
|
+
fail: typeof fail;
|
|
452
|
+
}
|
|
453
|
+
type GetExpectType<T> = T extends number ? NumberExpect<T> : AllExpects<T>;
|
|
454
|
+
//# sourceMappingURL=expect.types.d.ts.map
|
|
455
|
+
//#endregion
|
|
456
|
+
export { ArrayExpect, BigIntExpect, BooleanExpect, DateExpect, Expect, FunctionExpect, Loose, MapExpect, NumberExpect, ObjectExpect, PromiseExpect, type State, StringExpect, SymbolExpect, ValueExpect };
|
|
457
|
+
//# sourceMappingURL=expect.types.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"expect.types.d.cts","names":[],"sources":["../src/utils/process-error.ts","../src/assert/throws.ts","../src/utils/fail.ts","../src/utils/types.ts","../src/utils/get-type.ts","../src/mixins.ts","../src/expect.types.ts"],"sourcesContent":[],"mappings":"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"}
|