Skip to content

Commit

Permalink
fix(e2e-runner): Use correct path for run-commands
Browse files Browse the repository at this point in the history
Fixes #147
  • Loading branch information
TriPSs committed Aug 31, 2023
1 parent 770133f commit d239992
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/e2e-runner/src/executors/run/run.impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export async function endToEndRunner(
success = (await playwrightExecutor(rest, context)).success
} else if (runner === 'run-commands') {
// eslint-disable-next-line @typescript-eslint/no-var-requires
const runCommandsExecutor = require('@nx/workspace/src/executors/run-commands/run-commands.impl').default
const runCommandsExecutor = require('nx/src/executors/run-commands/run-commands.impl').default

success = (await runCommandsExecutor(rest as RunCommandsOptions, context)).success
} else {
Expand Down

0 comments on commit d239992

Please sign in to comment.