From eb541df203a5f612c07cfdb591d3ad3319af360b Mon Sep 17 00:00:00 2001 From: Nicola Molinari Date: Sun, 8 Dec 2019 14:34:31 +0100 Subject: [PATCH] test: run all tests --- src/changelog.spec.ts | 2 +- src/functional/markdown-full.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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);