Skip to content

Commit

Permalink
Fix flaky Bun test
Browse files Browse the repository at this point in the history
  • Loading branch information
eps1lon committed Mar 3, 2025
1 parent e5f6f13 commit 111c8ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/create-next-app/package-manager/bun.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
useTempDir,
} from '../utils'

const lockFile = 'bun.lockb'
const lockFile = 'bun.lock'
const files = [...DEFAULT_FILES, lockFile]

describe('create-next-app with package manager bun', () => {
Expand All @@ -26,7 +26,7 @@ describe('create-next-app with package manager bun', () => {

await command('bun', ['--version'])
// install bun if not available
.catch(() => command('npm', ['i', '-g', 'bun']))
.catch(() => command('npm', ['i', '-g', 'bun@1.2.4']))
})

it('should use bun for --use-bun flag', async () => {
Expand Down

0 comments on commit 111c8ea

Please sign in to comment.