@@ -68,7 +68,7 @@ describe("Config register_package_manager", function()
6868 it (" should prioritize yarn when both yarn.lock and bun.lock exist" , function ()
6969 local package_json = file .create_package_json ({ go = true })
7070 local dir = vim .fn .fnamemodify (package_json .path , " :h" )
71-
71+
7272 local yarn_lock = file .create ({ name = dir .. " /yarn.lock" })
7373 local bun_lock = file .create ({ name = dir .. " /bun.lock" })
7474
@@ -84,7 +84,7 @@ describe("Config register_package_manager", function()
8484 it (" should prioritize npm when both package-lock.json and bun.lock exist" , function ()
8585 local package_json = file .create_package_json ({ go = true })
8686 local dir = vim .fn .fnamemodify (package_json .path , " :h" )
87-
87+
8888 local npm_lock = file .create ({ name = dir .. " /package-lock.json" })
8989 local bun_lock = file .create ({ name = dir .. " /bun.lock" })
9090
@@ -100,7 +100,7 @@ describe("Config register_package_manager", function()
100100 it (" should prioritize bun when both bun.lock and pnpm-lock.yaml exist" , function ()
101101 local package_json = file .create_package_json ({ go = true })
102102 local dir = vim .fn .fnamemodify (package_json .path , " :h" )
103-
103+
104104 local bun_lock = file .create ({ name = dir .. " /bun.lock" })
105105 local pnpm_lock = file .create ({ name = dir .. " /pnpm-lock.yaml" })
106106
0 commit comments