Address feedback

This commit is contained in:
Jacob Wallraff
2023-01-23 17:50:54 -08:00
parent af5c15a422
commit 58d92658b6
5 changed files with 19 additions and 23 deletions
+2 -2
View File
@@ -110,7 +110,7 @@ jobs:
);
});
it("on a cron identifier", async () => {
it("on a cron mapping key", async () => {
const input = `on:
schedule:
- c|ron: '0 0 * * *'
@@ -127,7 +127,7 @@ jobs:
`;
const result = await hover(...getPositionFromCursor(input));
expect(result).not.toBeUndefined();
expect(result?.contents).toEqual("Invalid cron expression");
expect(result?.contents).toEqual("");
});
});