diff options
Diffstat (limited to 'test/cli/install/bun-update.test.ts')
-rw-r--r-- | test/cli/install/bun-update.test.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/cli/install/bun-update.test.ts b/test/cli/install/bun-update.test.ts index c7d4fdd85..7cdfb3a97 100644 --- a/test/cli/install/bun-update.test.ts +++ b/test/cli/install/bun-update.test.ts @@ -67,7 +67,7 @@ it("should update to latest version of dependency", async () => { expect(out1.replace(/\s*\[[0-9\.]+m?s\]\s*$/, "").split(/\r?\n/)).toEqual([ " + baz@0.0.3", "", - " 1 packages installed", + " 1 package installed", ]); expect(await exited1).toBe(0); expect(urls.sort()).toEqual([`${root_url}/baz`, `${root_url}/baz-0.0.3.tgz`]); @@ -113,7 +113,7 @@ it("should update to latest version of dependency", async () => { " - baz-exec", "", "", - " 1 packages installed", + " 1 package installed", ]); expect(await exited2).toBe(0); expect(urls.sort()).toEqual([`${root_url}/baz`, `${root_url}/baz-0.0.5.tgz`]); @@ -296,7 +296,7 @@ it("lockfile should not be modified when there are no version changes, issue#588 expect(out1.replace(/\s*\[[0-9\.]+m?s\]\s*$/, "").split(/\r?\n/)).toEqual([ " + baz@0.0.3", "", - " 1 packages installed", + " 1 package installed", ]); // Test if the lockb has been modified by `bun update`. |