@@ -277,7 +277,7 @@ describe("install", () => {
277277 [ "i" , "--bun" , "--save-dev" , "@std/[email protected] " ] , 278278 async ( dir ) => {
279279 assert . ok (
280- await isFile ( path . join ( dir , "bun.lockb " ) ) ,
280+ await isFile ( path . join ( dir , "bun.lock " ) ) ,
281281 "bun lockfile not created" ,
282282 ) ;
283283 const pkgJson = await readJson < PkgJson > (
@@ -333,7 +333,7 @@ describe("install", () => {
333333 [ "i" , "--bun" , "--save-optional" , "@std/[email protected] " ] , 334334 async ( dir ) => {
335335 assert . ok (
336- await isFile ( path . join ( dir , "bun.lockb " ) ) ,
336+ await isFile ( path . join ( dir , "bun.lock " ) ) ,
337337 "bun lockfile not created" ,
338338 ) ;
339339 const pkgJson = await readJson < PkgJson > (
@@ -440,7 +440,7 @@ describe("install", () => {
440440 [ "i" , "--bun" , "@std/[email protected] " ] , 441441 async ( dir ) => {
442442 assert . ok (
443- await isFile ( path . join ( dir , "bun.lockb " ) ) ,
443+ await isFile ( path . join ( dir , "bun.lock " ) ) ,
444444 "bun lockfile not created" ,
445445 ) ;
446446
@@ -584,7 +584,7 @@ describe("install", () => {
584584585585 async ( dir ) => {
586586 assert . ok (
587- await isFile ( path . join ( dir , "bun.lockb " ) ) ,
587+ await isFile ( path . join ( dir , "bun.lock " ) ) ,
588588 "bun lockfile not created" ,
589589 ) ;
590590 } ,
0 commit comments