diff --git a/src/changelog.spec.ts b/src/changelog.spec.ts index 22ad603c..460d7dd4 100644 --- a/src/changelog.spec.ts +++ b/src/changelog.spec.ts @@ -96,7 +96,7 @@ describe("Changelog", () => { jest.resetAllMocks(); }); - it.only("parse commits with different tags", async () => { + it("parse commits with different tags", async () => { const MockedChangelog = require("./changelog").default; const changelog = new MockedChangelog(); const commitsInfo = await changelog.getCommitInfos(); diff --git a/src/functional/markdown-full.spec.ts b/src/functional/markdown-full.spec.ts index b50078b7..4c9cb799 100644 --- a/src/functional/markdown-full.spec.ts +++ b/src/functional/markdown-full.spec.ts @@ -414,7 +414,7 @@ describe("createMarkdown", () => { afterEach(() => { jest.resetAllMocks(); }); - it.only("should abort with a proper error message", async () => { + it("should abort with a proper error message", async () => { const MockedChangelog = require("../changelog").default; const changelog = new MockedChangelog(); expect.assertions(2);