Skip to content

Commit b51df6a

Browse files
fix: revert
1 parent 6d7e06b commit b51df6a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

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

68-
/*
6968
it("should spawn yarn upgrade from spawnChild", () => {
7069
const packageName = "some-pkg";
7170

7271
mockUpdateYarnOnce();
7372

7473
packageManager.spawnChild(packageName);
7574
expect(spawn.sync).toHaveBeenLastCalledWith("yarn", ["global", "upgrade", packageName], { stdio: "inherit" });
76-
}); */
75+
});
7776

7877
it("should spawn npm install from spawnChild", () => {
7978
const packageName = "some-pkg";

0 commit comments

Comments
 (0)