Asserts that a value is a valid Date
object.
Symbol
Matchers.toBeValidDate
expect(new Date()).toBeValidDate();
expect(new Date(null)).not.toBeValidDate();
expect("2020-03-01").not.toBeValidDate();
Symbol
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();