Skip to content

Commit

Permalink
"Forked process" -> "Worker process"
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanHahn committed Dec 17, 2024
1 parent 3a22959 commit cc6b1b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test-e2e/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,10 +305,10 @@ export async function createOldManagerOnVersion2_0_1(seed, overrides = {}) {
export async function createIpcManager(seed, t, overrides = {}) {
const { port1: parentPort, port2: childPort } = new MessageChannel()

const forkedProcessPath = fileURLToPath(
new URL('./forked-process.js', import.meta.url)
const workerProcessPath = fileURLToPath(
new URL('./worker-process.js', import.meta.url)
)
const worker = new Worker(forkedProcessPath, {
const worker = new Worker(workerProcessPath, {
workerData: {
managerConstructorOverrides: { rootKey: getRootKey(seed), ...overrides },
childPort,
Expand Down
File renamed without changes.

0 comments on commit cc6b1b7

Please sign in to comment.