Skip to content

Commit cd573e7

Browse files
committed
Fix windows cli tests
1 parent 8a55cb2 commit cd573e7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • profile-query-cli/src/test/integration

profile-query-cli/src/test/integration/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export async function runPq(
148148
timeout?: number;
149149
}
150150
): Promise<CommandResult> {
151-
const result = await exec(PQ_BIN, args, {
151+
const result = await exec(process.execPath, [PQ_BIN, ...args], {
152152
env: ctx.env,
153153
timeout: options?.timeout ?? 30000,
154154
});

0 commit comments

Comments
 (0)