supertape 7.6.0 → 7.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 +7 -0
- package/README.md +1 -1
- package/lib/validator.js +1 -1
- package/package.json +4 -3
package/ChangeLog
CHANGED
package/README.md
CHANGED
|
@@ -265,7 +265,7 @@ test('lib: diff', (t) => {
|
|
|
265
265
|
| 0 | `OK` | no errors found |
|
|
266
266
|
| 1 | `FAIL` | test failed |
|
|
267
267
|
| 2 | `WAS_STOP` | test was halted by user |
|
|
268
|
-
| 3 | `UNHANDLED`| unhandled exception
|
|
268
|
+
| 3 | `UNHANDLED`| unhandled exception occurred |
|
|
269
269
|
| 4 | `INVALID_OPTION`| wrong option provided |
|
|
270
270
|
| 5 | `SKIPED` | works only with `SUPERTAPE_CHECK_SKIPED` env variable when skiped files 1 and more |
|
|
271
271
|
|
package/lib/validator.js
CHANGED
|
@@ -8,7 +8,7 @@ const getMessage = ({message, at, validations}) => [message, at, validations];
|
|
|
8
8
|
|
|
9
9
|
const getMessagesList = (tests) => tests.map(getMessage);
|
|
10
10
|
const compareMessage = (a) => ([b]) => a === b;
|
|
11
|
-
const SCOPE_DEFINED = /^[
|
|
11
|
+
const SCOPE_DEFINED = /^[@\w-/\d\s]+:.*/;
|
|
12
12
|
const processedList = new Set();
|
|
13
13
|
|
|
14
14
|
const validations = {
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supertape",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.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",
|
|
7
7
|
"main": "./lib/supertape.js",
|
|
8
|
+
"commitType": "colon",
|
|
8
9
|
"exports": {
|
|
9
10
|
".": {
|
|
10
11
|
"node": {
|
|
@@ -79,14 +80,14 @@
|
|
|
79
80
|
"check-dts": "^0.6.5",
|
|
80
81
|
"eslint": "^8.0.0",
|
|
81
82
|
"eslint-plugin-node": "^11.1.0",
|
|
82
|
-
"eslint-plugin-putout": "^
|
|
83
|
+
"eslint-plugin-putout": "^16.0.1",
|
|
83
84
|
"find-up": "^6.3.0",
|
|
84
85
|
"madrun": "^9.0.0",
|
|
85
86
|
"mock-require": "^3.0.2",
|
|
86
87
|
"montag": "^1.0.0",
|
|
87
88
|
"nodemon": "^2.0.2",
|
|
88
89
|
"pullout": "^4.0.0",
|
|
89
|
-
"putout": "^
|
|
90
|
+
"putout": "^27.2.0",
|
|
90
91
|
"runsome": "^1.0.0",
|
|
91
92
|
"try-catch": "^3.0.0",
|
|
92
93
|
"typescript": "^4.4.4"
|