-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
070d650
commit 68dc033
Showing
3 changed files
with
19 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -277,7 +277,7 @@ describe("install", () => { | |
["i", "--bun", "--save-dev", "@std/[email protected]"], | ||
async (dir) => { | ||
assert.ok( | ||
await isFile(path.join(dir, "bun.lockb")), | ||
await isFile(path.join(dir, "bun.lock")), | ||
"bun lockfile not created", | ||
); | ||
const pkgJson = await readJson<PkgJson>( | ||
|
@@ -333,7 +333,7 @@ describe("install", () => { | |
["i", "--bun", "--save-optional", "@std/[email protected]"], | ||
async (dir) => { | ||
assert.ok( | ||
await isFile(path.join(dir, "bun.lockb")), | ||
await isFile(path.join(dir, "bun.lock")), | ||
"bun lockfile not created", | ||
); | ||
const pkgJson = await readJson<PkgJson>( | ||
|
@@ -440,7 +440,7 @@ describe("install", () => { | |
["i", "--bun", "@std/[email protected]"], | ||
async (dir) => { | ||
assert.ok( | ||
await isFile(path.join(dir, "bun.lockb")), | ||
await isFile(path.join(dir, "bun.lock")), | ||
"bun lockfile not created", | ||
); | ||
|
||
|
@@ -584,7 +584,7 @@ describe("install", () => { | |
["i", "@std/[email protected]"], | ||
async (dir) => { | ||
assert.ok( | ||
await isFile(path.join(dir, "bun.lockb")), | ||
await isFile(path.join(dir, "bun.lock")), | ||
"bun lockfile not created", | ||
); | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters