Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Sep 12, 2021
1 parent ddc7564 commit b69ebe6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
10 changes: 2 additions & 8 deletions src/combination/tasks/load.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,11 @@ export const loadRunner = async function ({
launch,
}) {
const {
spawn: runnerSpawn,
spawn,
spawnOptions = {},
versions: runnerVersions,
} = await launchRunner({ id, runnerConfig, launch })
return {
id,
runnerSpawn,
spawnOptions,
runnerVersions,
runnerConfig,
}
return { id, spawn, spawnOptions, runnerVersions, runnerConfig }
}

// Fire `runner.launch()`
Expand Down
2 changes: 1 addition & 1 deletion src/run/process/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const spawnRunnerProcess = async function ({
combination: {
dimensions: {
runner: {
runnerSpawn: [file, ...args],
spawn: [file, ...args],
spawnOptions,
},
},
Expand Down

0 comments on commit b69ebe6

Please sign in to comment.