supertape 8.6.1 → 8.7.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 +8 -0
- package/lib/diff.mjs +3 -1
- package/lib/operators.mjs +1 -2
- package/lib/supertape.js +1 -2
- package/lib/validator.js +1 -2
- package/package.json +2 -2
package/ChangeLog
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
2023.11.27, v8.7.0
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- 8fdc8b1 @supertape/formatter-progress-bar: drop @babel/core
|
|
5
|
+
- 0653677 @supertape/formatter-progress-bar: ci-info v4.0.0
|
|
6
|
+
- e59f976 supertape: improve diff output
|
|
7
|
+
- 7241f73 supertape: putout v33.0.0
|
|
8
|
+
|
|
1
9
|
2023.10.30, v8.6.1
|
|
2
10
|
|
|
3
11
|
feature:
|
package/lib/diff.mjs
CHANGED
package/lib/operators.mjs
CHANGED
|
@@ -221,9 +221,8 @@ function validateEnd({name, operators, runnerState}) {
|
|
|
221
221
|
|
|
222
222
|
incAssertionsCount();
|
|
223
223
|
|
|
224
|
-
if (isEnded())
|
|
224
|
+
if (isEnded())
|
|
225
225
|
return [INVALID, run('fail', runnerState, operators.fail(`Cannot run assertions after 't.end()' called`))];
|
|
226
|
-
}
|
|
227
226
|
|
|
228
227
|
return [VALID];
|
|
229
228
|
}
|
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": "8.
|
|
3
|
+
"version": "8.7.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",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"montag": "^1.0.0",
|
|
87
87
|
"nodemon": "^3.0.1",
|
|
88
88
|
"pullout": "^4.0.0",
|
|
89
|
-
"putout": "^
|
|
89
|
+
"putout": "^33.0.0",
|
|
90
90
|
"runsome": "^1.0.0",
|
|
91
91
|
"try-catch": "^3.0.0",
|
|
92
92
|
"typescript": "^5.1.6"
|