Skip to content

Commit

Permalink
chore(e2e): update lockfile expectation to match yarn 4 (#3880)
Browse files Browse the repository at this point in the history
  • Loading branch information
fahslaj committed Oct 27, 2023
1 parent bb5e7d7 commit 924f438
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions e2e/version/src/yarn-lockfiles.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ describe("lerna-version-yarn-lockfiles", () => {
`);
const yarnLock = readFileSync(fixture.getWorkspacePath("yarn.lock")).toString();
expect(yarnLock).toContain("package-a@^3.3.3, package-a@workspace:packages/package-a");
expect(yarnLock).toContain("package-b@workspace:packages/package-b");
expect(yarnLock).toContain("package-a: ^3.3.3");
expect(yarnLock).toContain(`package-a@npm:^3.3.3, package-a@workspace:packages/package-a`);
expect(yarnLock).toContain(`package-b@workspace:packages/package-b`);
expect(yarnLock).toContain(`package-a: "npm:^3.3.3"`);
});
});

0 comments on commit 924f438

Please sign in to comment.