supertape 11.1.3 → 11.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 CHANGED
@@ -1,3 +1,9 @@
1
+ 2025.06.29, v11.2.0
2
+
3
+ feature:
4
+ - 6937062 supertape: BigInt: add support
5
+ - 5b3def0 supertape: jest-diff v30.0.3
6
+
1
7
  2025.06.01, v11.1.3
2
8
 
3
9
  fix:
package/bin/formatter.mjs CHANGED
@@ -1,4 +1,5 @@
1
1
  import {EventEmitter} from 'node:events';
2
+ import {JSONStringify} from 'json-with-bigint';
2
3
 
3
4
  export const createFormatter = (parentPort) => {
4
5
  const formatter = new EventEmitter();
@@ -43,8 +44,8 @@ export const createFormatter = (parentPort) => {
43
44
  count,
44
45
  message,
45
46
  operator,
46
- result: JSON.stringify(result),
47
- expected: JSON.stringify(expected),
47
+ result: JSONStringify(result),
48
+ expected: JSONStringify(expected),
48
49
  output,
49
50
  errorStack,
50
51
  }]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supertape",
3
- "version": "11.1.3",
3
+ "version": "11.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",
@@ -54,7 +54,8 @@
54
54
  "flatted": "^3.3.1",
55
55
  "fullstore": "^3.0.0",
56
56
  "glob": "^11.0.1",
57
- "jest-diff": "^29.0.1",
57
+ "jest-diff": "^30.0.3",
58
+ "json-with-bigint": "^3.4.4",
58
59
  "once": "^1.4.0",
59
60
  "resolve": "^1.17.0",
60
61
  "stacktracey": "^2.1.7",