Skip to content

Commit

Permalink
test: run all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
emmenko committed Dec 8, 2019
1 parent 5fe8388 commit eb541df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/changelog.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion src/functional/markdown-full.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit eb541df

Please sign in to comment.