Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
tomi committed Aug 23, 2024
1 parent 5f7fc2f commit 034b6ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@n8n/benchmark/src/testExecution/k6Executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class K6Executor {
const k6ExecutablePath = await which(this.k6ExecutablePath, { nothrow: true });
if (!k6ExecutablePath) {
throw new Error(
`Could not find k6 executable based on your `PATH`. Please ensure k6 is available in your system and add it to your `PATH` or specify the path to the k6 executable using the `K6_PATH` environment variable.`,
'Could not find k6 executable based on your `PATH`. Please ensure k6 is available in your system and add it to your `PATH` or specify the path to the k6 executable using the `K6_PATH` environment variable.',
);
}

Expand Down

0 comments on commit 034b6ab

Please sign in to comment.