supertape 8.1.0 → 8.2.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/lib/supertape.d.ts +7 -2
- package/package.json +2 -2
package/ChangeLog
CHANGED
package/lib/supertape.d.ts
CHANGED
|
@@ -39,9 +39,14 @@ type TestOptions = {
|
|
|
39
39
|
};
|
|
40
40
|
|
|
41
41
|
declare function test(message: string, fn: (t: Test) => void, options?: TestOptions): void;
|
|
42
|
+
declare const skip: typeof test;
|
|
43
|
+
declare const only: typeof test;
|
|
44
|
+
|
|
42
45
|
declare namespace test {
|
|
43
|
-
export
|
|
44
|
-
|
|
46
|
+
export {
|
|
47
|
+
only,
|
|
48
|
+
skip,
|
|
49
|
+
};
|
|
45
50
|
}
|
|
46
51
|
|
|
47
52
|
export default test;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supertape",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.2.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",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"montag": "^1.0.0",
|
|
88
88
|
"nodemon": "^2.0.2",
|
|
89
89
|
"pullout": "^4.0.0",
|
|
90
|
-
"putout": "^
|
|
90
|
+
"putout": "^28.0.0",
|
|
91
91
|
"runsome": "^1.0.0",
|
|
92
92
|
"try-catch": "^3.0.0",
|
|
93
93
|
"typescript": "^4.4.4"
|