Skip to content

Commit da7873a

Browse files
committed
fix tests
1 parent 26b630a commit da7873a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/integrations/flat-config.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ describe('Integration with flat config', () => {
1111
beforeEach(() => {
1212
originalCwd = process.cwd()
1313
process.chdir(path.join(__dirname, 'flat-config'))
14-
cp.execSync('npm i -f', { stdio: 'inherit' })
14+
cp.execSync('pnpm i -f', { stdio: 'inherit' })
1515
})
1616
afterEach(() => {
1717
originalCwd && process.chdir(originalCwd)

tests/integrations/legacy-config.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ describe('Integration with legacy config', () => {
1111
beforeEach(() => {
1212
originalCwd = process.cwd()
1313
process.chdir(path.join(__dirname, 'legacy-config'))
14-
cp.execSync('npm i -f', { stdio: 'inherit' })
14+
cp.execSync('pnpm i -f', { stdio: 'inherit' })
1515
})
1616
afterEach(() => {
1717
originalCwd && process.chdir(originalCwd)

0 commit comments

Comments
 (0)