diff --git a/languageserver/src/description-providers/action-description.test.ts b/languageserver/src/description-providers/action-description.test.ts index 91fc5df..72a0bd8 100644 --- a/languageserver/src/description-providers/action-description.test.ts +++ b/languageserver/src/description-providers/action-description.test.ts @@ -35,7 +35,9 @@ describe("action descriptions", () => { .sandbox() .getOnce("https://api.github.com/repos/actions/checkout/contents/action.yml?ref=v3", actionsCheckoutMetadata); - expect(await getDescription(mock)).toEqual("**Checkout**\n\nCheckout a Git repository at a particular version"); + expect(await getDescription(mock)).toEqual( + "[**Checkout**](https://www.github.com/actions/checkout/tree/v3/)\n\nCheckout a Git repository at a particular version" + ); }); it("action does not exist", async () => {