Skip to content

Commit

Permalink
fix: revert
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesgeorge007 committed Aug 12, 2019
1 parent 6d7e06b commit b51df6a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/utils/__tests__/package-manager.test.ts
Expand Up @@ -65,15 +65,14 @@ describe("package-manager", () => {
expect(spawn.sync).toHaveBeenLastCalledWith("npm", ["install", "-g", packageName], { stdio: "inherit" });
});

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

mockUpdateYarnOnce();

packageManager.spawnChild(packageName);
expect(spawn.sync).toHaveBeenLastCalledWith("yarn", ["global", "upgrade", packageName], { stdio: "inherit" });
}); */
});

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

0 comments on commit b51df6a

Please sign in to comment.