Skip to content

Commit

Permalink
fix runTests launch args
Browse files Browse the repository at this point in the history
  • Loading branch information
seeM committed Mar 28, 2024
1 parent b501826 commit d2b8511
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ export async function runTests(options: TestOptions): Promise<number> {
const tmpDir = await fs.mkdtemp(path.join(os.tmpdir(), 'positron-'));
const userDataDir = path.join(tmpDir, 'user-data');
options.launchArgs = options.launchArgs || [];
options.launchArgs.concat(['--user-data-dir', userDataDir]);
options.launchArgs.push('--user-data-dir', userDataDir);

return vscodeRunTests({ version, vscodeExecutablePath, ...options });
}

0 comments on commit d2b8511

Please sign in to comment.