From 78c5cb0af6efa644357952c3ea763cea77c8f338 Mon Sep 17 00:00:00 2001 From: Jonathan Delgado Date: Fri, 22 Dec 2023 02:42:20 -0300 Subject: [PATCH] feat: cron update test cases --- lib/crontab-parse.spec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/crontab-parse.spec.ts b/lib/crontab-parse.spec.ts index 0941dda..2a92540 100644 --- a/lib/crontab-parse.spec.ts +++ b/lib/crontab-parse.spec.ts @@ -188,4 +188,5 @@ Deno.test("Parse AST", () => { astCrontabParse("* * * jan *"), { body: [{}, {}, {}, { value: 1 }] }, ); + astCrontabParse("1,2-43,1/3,1-2/53 1,2-13,1/3,1-2/9 1,2-13,1/3,1-2/9 1,2-jun,1/3,1-2/9 1,2-4,1/3,1-2/3") })