tape-six 1.0.2 → 1.0.3
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 -0
- package/package.json +2 -2
- package/src/bun/TestWorker.js +3 -1
package/README.md
CHANGED
|
@@ -236,6 +236,7 @@ See [set-up tests](https://github.com/uhop/tape-six/wiki/Set-up-tests) for detai
|
|
|
236
236
|
|
|
237
237
|
The most recent releases:
|
|
238
238
|
|
|
239
|
+
* 1.0.3 *Minor update to accommodate changes in Bun and updated dev deps.*
|
|
239
240
|
* 1.0.2 *Bugfix for Deno using the JSONL reporter.*
|
|
240
241
|
* 1.0.1 *Technical release: added more links.*
|
|
241
242
|
* 1.0.0 *The first official release.*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tape-six",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "TAP the test harness for the modern JavaScript (ES6).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -64,6 +64,6 @@
|
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"puppeteer": "^
|
|
67
|
+
"puppeteer": "^24.1.0"
|
|
68
68
|
}
|
|
69
69
|
}
|
package/src/bun/TestWorker.js
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import {sep} from 'node:path';
|
|
2
|
+
|
|
1
3
|
import {StopTest} from '../State.js';
|
|
2
4
|
import EventServer from '../utils/EventServer.js';
|
|
3
5
|
|
|
4
6
|
const utilName = new URL('../test.js', import.meta.url),
|
|
5
|
-
baseName = Bun.pathToFileURL(Bun.cwd);
|
|
7
|
+
baseName = Bun.pathToFileURL(Bun.cwd + sep);
|
|
6
8
|
|
|
7
9
|
export default class TestWorker extends EventServer {
|
|
8
10
|
constructor(reporter, numberOfTasks = navigator.hardwareConcurrency, options) {
|