browser-ava 2.3.32 → 2.3.34

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 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.32",
3
+ "version": "2.3.34",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -47,15 +47,15 @@
47
47
  "ws": "^8.18.3"
48
48
  },
49
49
  "devDependencies": {
50
- "@types/node": "^24.4.0",
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.8"
55
+ "semantic-release": "^24.2.9"
56
56
  },
57
57
  "engines": {
58
- "node": ">=22.19.0",
58
+ "node": ">=22.19.5",
59
59
  "bun": ">=1.2.12"
60
60
  },
61
61
  "repository": {
@@ -240,7 +240,12 @@ async function runTestModule(tm) {
240
240
  }
241
241
 
242
242
  async function runTestModules() {
243
- await Promise.all(testModules.map(tm => runTestModule(tm)));
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