Files
languageservices/actions-languageservice/src/hover.test.ts
T

13 lines
706 B
TypeScript

describe("validation", () => {
it("valid workflow", async () => {
// const result = await hover(null as any, {
// line: 1,
// character: 2,
// });
// expect(result).not.toBeUndefined();
// expect(result?.contents).toEqual(
// "The name of the GitHub event that triggers the workflow. You can provide a single event string, array of events, array of event types, or an event configuration map that schedules a workflow or restricts the execution of a workflow to specific files, tags, or branch changes. For a list of available events, see https://help.github.com/en/github/automating-your-workflow-with-github-actions/events-that-trigger-workflows."
// );
});
});