supertape 8.4.0 → 8.4.1
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 +7 -0
- package/lib/validator.js +1 -2
- package/package.json +3 -3
package/ChangeLog
CHANGED
package/lib/validator.js
CHANGED
|
@@ -35,9 +35,8 @@ const {
|
|
|
35
35
|
|
|
36
36
|
const findByMessage = (msg, tests) => {
|
|
37
37
|
const getMessages = once(getMessagesList);
|
|
38
|
-
const filtered = getMessages(tests).filter(compareMessage(msg));
|
|
39
38
|
|
|
40
|
-
return
|
|
39
|
+
return getMessages(tests).filter(compareMessage(msg));
|
|
41
40
|
};
|
|
42
41
|
|
|
43
42
|
module.exports.setValidations = ({checkDuplicates, checkScopes, checkAssertionsCount}) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supertape",
|
|
3
|
-
"version": "8.4.
|
|
3
|
+
"version": "8.4.1",
|
|
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",
|
|
@@ -79,14 +79,14 @@
|
|
|
79
79
|
"check-dts": "^0.7.0",
|
|
80
80
|
"eslint": "^8.0.0",
|
|
81
81
|
"eslint-plugin-n": "^16.0.1",
|
|
82
|
-
"eslint-plugin-putout": "^
|
|
82
|
+
"eslint-plugin-putout": "^19.0.3",
|
|
83
83
|
"find-up": "^6.3.0",
|
|
84
84
|
"madrun": "^9.0.0",
|
|
85
85
|
"mock-require": "^3.0.2",
|
|
86
86
|
"montag": "^1.0.0",
|
|
87
87
|
"nodemon": "^3.0.1",
|
|
88
88
|
"pullout": "^4.0.0",
|
|
89
|
-
"putout": "^
|
|
89
|
+
"putout": "^31.0.3",
|
|
90
90
|
"runsome": "^1.0.0",
|
|
91
91
|
"try-catch": "^3.0.0",
|
|
92
92
|
"typescript": "^5.1.6"
|