Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 35 additions & 32 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/customers.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ describe("Archive Customer", () => {
expect(true).toEqual(true);
})
.catch(err => {
fail(err);
throw err;
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any reason for changing fail to throw?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I had tests failing and claude found that it was because of a newer jest version. but now I don't see why there was a newer version, maybe that was a consequence of my environment. I'll look into it.

});
});
});
Expand Down
6 changes: 3 additions & 3 deletions src/releases.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ describe("Promote Release", () => {
expect(true).toEqual(true);
})
.catch(err => {
fail(err);
throw err;
});
});
});
Expand Down Expand Up @@ -75,7 +75,7 @@ describe("Report Results", () => {
expect(true).toEqual(true);
})
.catch(err => {
fail(err);
throw err;
});
});
});
Expand Down Expand Up @@ -112,7 +112,7 @@ describe("Get Release", () => {
expect(true).toEqual(true);
})
.catch(err => {
fail(err);
throw err;
});
});
});
Expand Down