supertape 7.3.0 → 7.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 +23 -0
- package/lib/cli.js +1 -0
- package/lib/operators.mjs +1 -0
- package/lib/supertape.d.ts +8 -0
- package/lib/supertape.js +1 -0
- package/lib/validator.js +1 -0
- package/package.json +3 -3
package/ChangeLog
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
2022.06.21, v7.5.0
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- (supertape) extend: add type
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
2022.06.10, v7.4.1
|
|
8
|
+
|
|
9
|
+
fix:
|
|
10
|
+
- (supertape) get back: SKIPPED -> SKIPED
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
2022.06.09, v7.4.0
|
|
14
|
+
|
|
15
|
+
fix:
|
|
16
|
+
- (supertape) SKIPED -> SKIPPED
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
feature:
|
|
20
|
+
- (package) jest-diff v28.1.1
|
|
21
|
+
- (package) @iocmd/wait v2.1.0
|
|
22
|
+
|
|
23
|
+
|
|
1
24
|
2022.05.30, v7.3.0
|
|
2
25
|
|
|
3
26
|
feature:
|
package/lib/cli.js
CHANGED
package/lib/operators.mjs
CHANGED
package/lib/supertape.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ type Result = {
|
|
|
10
10
|
expected: unknown,
|
|
11
11
|
actual: unknown,
|
|
12
12
|
message: string,
|
|
13
|
+
output: string,
|
|
13
14
|
};
|
|
14
15
|
|
|
15
16
|
type Test = OperatorStub & {
|
|
@@ -41,10 +42,17 @@ declare namespace test {
|
|
|
41
42
|
|
|
42
43
|
export default test;
|
|
43
44
|
|
|
45
|
+
type CustomOperators = {
|
|
46
|
+
[index: string]: (operator: Test) => (...args: any[]) => Result
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
declare function extend(operators: CustomOperators): Test;
|
|
50
|
+
|
|
44
51
|
export {
|
|
45
52
|
test,
|
|
46
53
|
Test,
|
|
47
54
|
stub,
|
|
48
55
|
Stub,
|
|
56
|
+
extend,
|
|
49
57
|
};
|
|
50
58
|
|
package/lib/supertape.js
CHANGED
package/lib/validator.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supertape",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.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",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"deep-equal": "^2.0.3",
|
|
54
54
|
"fullstore": "^3.0.0",
|
|
55
55
|
"glob": "^7.1.6",
|
|
56
|
-
"jest-diff": "^
|
|
56
|
+
"jest-diff": "^28.1.1",
|
|
57
57
|
"once": "^1.4.0",
|
|
58
58
|
"resolve": "^1.17.0",
|
|
59
59
|
"stacktracey": "^2.1.7",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
],
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@babel/core": "^7.12.9",
|
|
77
|
-
"@iocmd/wait": "^1.0
|
|
77
|
+
"@iocmd/wait": "^2.1.0",
|
|
78
78
|
"c8": "^7.3.5",
|
|
79
79
|
"check-dts": "^0.6.5",
|
|
80
80
|
"eslint": "^8.0.0",
|