MtoBeValidDate
Bun

method

test.MatchersBuiltin.toBeValidDate

toBeValidDate(): void;

Asserts that a value is a valid Date object.

expect(new Date()).toBeValidDate();
expect(new Date(null)).not.toBeValidDate();
expect("2020-03-01").not.toBeValidDate();