Skip to content

Commit

Permalink
fix: test names
Browse files Browse the repository at this point in the history
  • Loading branch information
restfulhead committed Feb 23, 2024
1 parent 210391a commit 820e33a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/__tests__/release.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ describe("Release", () => {
expect(writeSpy.mock.calls[0][1].includes(`1.0.1`)).toBe(true);
});

test("creates changelog with named tag", async () => {
test("creates changelog with named tag and version prefix", async () => {
const gh = new Release(git, {
noVersionPrefix: false,
prereleaseBranches: ["next"],
Expand All @@ -543,7 +543,7 @@ describe("Release", () => {
expect(writeSpy.mock.calls[0][1].includes(`1.0.1`)).toBe(true);
});

test("creates changelog with named tag and version prefix", async () => {
test("creates changelog with named tag", async () => {
const gh = new Release(git, {
noVersionPrefix: true,
prereleaseBranches: ["next"],
Expand Down

0 comments on commit 820e33a

Please sign in to comment.