browser-ava 2.3.32 → 2.3.33
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/README.md +1 -1
- package/package.json +3 -3
- package/src/browser/runtime.mjs +6 -1
package/README.md
CHANGED
|
@@ -92,4 +92,4 @@ Maps import url from node to browser view.
|
|
|
92
92
|
* `name` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** module to resolve
|
|
93
93
|
* `base` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** where to start resolving
|
|
94
94
|
|
|
95
|
-
Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)<[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)>** resolved import url
|
|
95
|
+
Returns **[Promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)<([string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String) | [undefined](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/undefined))>** resolved import url
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browser-ava",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.33",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -47,12 +47,12 @@
|
|
|
47
47
|
"ws": "^8.18.3"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@types/node": "^24.
|
|
50
|
+
"@types/node": "^24.5.2",
|
|
51
51
|
"ava": "^6.4.1",
|
|
52
52
|
"c8": "^10.1.3",
|
|
53
53
|
"documentation": "^14.0.3",
|
|
54
54
|
"execa": "^9.6.0",
|
|
55
|
-
"semantic-release": "^24.2.
|
|
55
|
+
"semantic-release": "^24.2.9"
|
|
56
56
|
},
|
|
57
57
|
"engines": {
|
|
58
58
|
"node": ">=22.19.0",
|
package/src/browser/runtime.mjs
CHANGED
|
@@ -240,7 +240,12 @@ async function runTestModule(tm) {
|
|
|
240
240
|
}
|
|
241
241
|
|
|
242
242
|
async function runTestModules() {
|
|
243
|
-
|
|
243
|
+
try {
|
|
244
|
+
await Promise.all(testModules.map(tm => runTestModule(tm)));
|
|
245
|
+
}
|
|
246
|
+
catch(error) {
|
|
247
|
+
console.error(error);
|
|
248
|
+
}
|
|
244
249
|
|
|
245
250
|
ws.send(JSON.stringify({ action: "result", data: testModules }, allErrorProperties));
|
|
246
251
|
|