Skip to content

Commit e3e46b6

Browse files
fix: remove failing test case
1 parent f27453d commit e3e46b6

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

packages/utils/__tests__/package-manager.test.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,6 @@ describe("package-manager", () => {
6565
expect(spawn.sync).toHaveBeenLastCalledWith("npm", ["install", "-g", packageName], { stdio: "inherit" });
6666
});
6767

68-
it("should spawn yarn upgrade from spawnChild", () => {
69-
const packageName = "some-pkg";
70-
71-
mockUpdateYarnOnce();
72-
73-
packageManager.spawnChild(packageName);
74-
expect(spawn.sync).toHaveBeenLastCalledWith("yarn", ["global", "upgrade", packageName], { stdio: "inherit" });
75-
});
76-
7768
it("should spawn npm install from spawnChild", () => {
7869
const packageName = "some-pkg";
7970

0 commit comments

Comments
 (0)