Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yannbf committed May 20, 2024
1 parent 26b630a commit da7873a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/integrations/flat-config.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe('Integration with flat config', () => {
beforeEach(() => {
originalCwd = process.cwd()
process.chdir(path.join(__dirname, 'flat-config'))
cp.execSync('npm i -f', { stdio: 'inherit' })
cp.execSync('pnpm i -f', { stdio: 'inherit' })
})
afterEach(() => {
originalCwd && process.chdir(originalCwd)
Expand Down
2 changes: 1 addition & 1 deletion tests/integrations/legacy-config.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe('Integration with legacy config', () => {
beforeEach(() => {
originalCwd = process.cwd()
process.chdir(path.join(__dirname, 'legacy-config'))
cp.execSync('npm i -f', { stdio: 'inherit' })
cp.execSync('pnpm i -f', { stdio: 'inherit' })
})
afterEach(() => {
originalCwd && process.chdir(originalCwd)
Expand Down

0 comments on commit da7873a

Please sign in to comment.