Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dev-packages/e2e-tests/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ async function run(): Promise<void> {
const cwd = tmpDirPath;

console.log(`Building ${testAppPath} in ${tmpDirPath}...`);
await asyncExec('pnpm test:build', { env, cwd });
await asyncExec('volta run pnpm test:build', { env, cwd });

console.log(`Testing ${testAppPath}...`);
await asyncExec('pnpm test:assert', { env, cwd });
await asyncExec('volta run pnpm test:assert', { env, cwd });

// clean up (although this is tmp, still nice to do)
await rm(tmpDirPath, { recursive: true });
Expand Down
Loading