toBeValidDate

Bun

Symbol

Matchers.toBeValidDate

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();