supertape 10.2.0 → 10.2.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 CHANGED
@@ -1,3 +1,8 @@
1
+ 2024.02.28, v10.2.1
2
+
3
+ fix:
4
+ - 9b0bf03 supertape: tap: success (#8)
5
+
1
6
  2024.02.21, v10.2.0
2
7
 
3
8
  feature:
package/bin/formatter.mjs CHANGED
@@ -31,7 +31,7 @@ export const createFormatter = (parentPort) => {
31
31
  });
32
32
 
33
33
  formatter.on('test:success', ({count, message}) => {
34
- parentPort.postMessage(['test:success', {
34
+ parentPort.postMessage(['success', {
35
35
  count,
36
36
  message,
37
37
  }]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supertape",
3
- "version": "10.2.0",
3
+ "version": "10.2.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",