Skip to content

Commit

Permalink
jest-worker README
Browse files Browse the repository at this point in the history
  • Loading branch information
jeysal committed Mar 30, 2019
1 parent 8f44912 commit 6d5951d
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions packages/jest-worker/README.md
Expand Up @@ -107,10 +107,10 @@ Returns a `ReadableStream` where the standard error of all workers is piped. Not

### `end()`

TODO explain returned Promise, adapt examples

Finishes the workers by killing all workers. No further calls can be done to the `Worker` instance.

Returns a Promise that resolves with `{ forceExited: boolean }` once all workers are dead. If `forceExited` is `true`, at least one of the workers did not exit gracefully, which likely happened because it executed a leaky task that left handles open. This should be avoided, force exiting workers is a last resort to prevent creating lots of orphans.

**Note:** Each worker has a unique id (index that starts with `1`) which is available on `process.env.JEST_WORKER_ID`

## Setting up and tearing down the child process
Expand Down Expand Up @@ -141,7 +141,10 @@ async function main() {
console.log(await myWorker.bar('Bob')); // "Hello from bar: Bob"
console.log(await myWorker.getWorkerId()); // "3" -> this message has sent from the 3rd worker

myWorker.end();
const {forceExited} = await myWorker.end();
if (forceExited) {
console.error('Workers failed to exit gracefully');
}
}

main();
Expand Down Expand Up @@ -188,7 +191,10 @@ async function main() {
// the same worker that processed the file the first time will process it now.
console.log(await myWorker.transform('/tmp/foo.js'));

myWorker.end();
const {forceExited} = await myWorker.end();
if (forceExited) {
console.error('Workers failed to exit gracefully');
}
}

main();
Expand Down

0 comments on commit 6d5951d

Please sign in to comment.