@@ -277,7 +277,7 @@ describe("install", () => {
277
277
[ "i" , "--bun" , "--save-dev" , "@std/[email protected] " ] ,
278
278
async ( dir ) => {
279
279
assert . ok (
280
- await isFile ( path . join ( dir , "bun.lockb " ) ) ,
280
+ await isFile ( path . join ( dir , "bun.lock " ) ) ,
281
281
"bun lockfile not created" ,
282
282
) ;
283
283
const pkgJson = await readJson < PkgJson > (
@@ -333,7 +333,7 @@ describe("install", () => {
333
333
[ "i" , "--bun" , "--save-optional" , "@std/[email protected] " ] ,
334
334
async ( dir ) => {
335
335
assert . ok (
336
- await isFile ( path . join ( dir , "bun.lockb " ) ) ,
336
+ await isFile ( path . join ( dir , "bun.lock " ) ) ,
337
337
"bun lockfile not created" ,
338
338
) ;
339
339
const pkgJson = await readJson < PkgJson > (
@@ -440,7 +440,7 @@ describe("install", () => {
440
440
[ "i" , "--bun" , "@std/[email protected] " ] ,
441
441
async ( dir ) => {
442
442
assert . ok (
443
- await isFile ( path . join ( dir , "bun.lockb " ) ) ,
443
+ await isFile ( path . join ( dir , "bun.lock " ) ) ,
444
444
"bun lockfile not created" ,
445
445
) ;
446
446
@@ -584,7 +584,7 @@ describe("install", () => {
584
584
585
585
async ( dir ) => {
586
586
assert . ok (
587
- await isFile ( path . join ( dir , "bun.lockb " ) ) ,
587
+ await isFile ( path . join ( dir , "bun.lock " ) ) ,
588
588
"bun lockfile not created" ,
589
589
) ;
590
590
} ,
0 commit comments