Thanks to visit codestin.com
Credit goes to github.com

Skip to content

feat(site): display version message #8435

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Jul 13, 2023
Prev Previous commit
Next Next commit
Fix fmt
  • Loading branch information
BrunoQuaresma committed Jul 12, 2023
commit 434cf2b462babade197d62f0ad8e009ef292e92c
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,10 @@ test("Patch request is not send when there are no changes", async () => {
jest
.spyOn(api, "createTemplateVersion")
.mockResolvedValueOnce(MockTemplateVersionWithEmptyMessage)
jest
.spyOn(api, "getTemplateVersion")
.mockResolvedValue({
...MockTemplateVersionWithEmptyMessage,
id: "new-version-id",
})
jest.spyOn(api, "getTemplateVersion").mockResolvedValue({
...MockTemplateVersionWithEmptyMessage,
id: "new-version-id",
})
jest
.spyOn(api, "watchBuildLogsByTemplateVersionId")
.mockImplementation((_, options) => {
Expand Down