We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17daa16 commit 6f07e5aCopy full SHA for 6f07e5a
dev-packages/e2e-tests/run.ts
@@ -84,10 +84,10 @@ async function run(): Promise<void> {
84
const cwd = tmpDirPath;
85
86
console.log(`Building ${testAppPath} in ${tmpDirPath}...`);
87
- await asyncExec('pnpm test:build', { env, cwd });
+ await asyncExec('volta run pnpm test:build', { env, cwd });
88
89
console.log(`Testing ${testAppPath}...`);
90
- await asyncExec('pnpm test:assert', { env, cwd });
+ await asyncExec('volta run pnpm test:assert', { env, cwd });
91
92
// clean up (although this is tmp, still nice to do)
93
await rm(tmpDirPath, { recursive: true });
0 commit comments