Skip to content

Commit

Permalink
ignore on win32 since rrule seems to be broken there.
Browse files Browse the repository at this point in the history
  • Loading branch information
jens-maus committed Sep 2, 2024
1 parent 6924965 commit 211b4df
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1086,7 +1086,10 @@ vows
return ev.rrule.between(new Date(2023, 0, 1), new Date(2024, 0, 1))[0];
},
'dt start well set'(topic) {
assert.equal(topic.toDateString(), new Date(2023, 6, 14).toDateString());
/* not on windows, see: https://github.com/jkbrzt/rrule/issues/608 */
if (process.platform !== "win32") {
assert.equal(topic.toDateString(), new Date(2023, 6, 14).toDateString());
}
},
'starts 14 Jul 2023 @ 12:00:00 (UTC)'(topic) {
assert.equal(topic.toISOString(), '2023-07-14T12:00:00.000Z');
Expand Down

0 comments on commit 211b4df

Please sign in to comment.