Skip to content

Commit

Permalink
compile
Browse files Browse the repository at this point in the history
  • Loading branch information
armandobelardo committed Sep 17, 2024
1 parent fecf765 commit 835bddb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions servers/fdr/src/__test__/local/db/cliVersionsDao.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ it("cli release with tags and URLs", async () => {
type: "feat",
summary: "added a new feature",
added: ["added a new feature"],
pullRequestUrl: "https://123.com",
links: ["https://123.com"],
},
],
};
Expand All @@ -43,7 +43,7 @@ it("cli release with tags and URLs", async () => {
const dbRelease = await fdrApplication.dao.cliVersions().getCliRelease({ cliVersion: "0.1.2-rc13" });
expect(dbRelease).not.toBeUndefined();
expect(dbRelease?.tags).toEqual(release.tags);
expect(dbRelease?.changelogEntry?.[0]?.pullRequestUrl).toEqual(release.changelogEntry?.[0]?.pullRequestUrl);
expect(dbRelease?.changelogEntry?.[0]?.links).toEqual(release.changelogEntry?.[0]?.links);
});

it("cli version get latest respects semver, not time", async () => {
Expand Down

0 comments on commit 835bddb

Please sign in to comment.