weekdayAssertion:AssertionFunctionSync< readonly["to be a weekday"], (subject:unknown)=>{message:string}|undefined, never, > = ...
Asserts that the subject is a weekday (Monday through Friday) in UTC.
Example
expect(newDate('2023-01-09'),'to be a weekday');// passes (Monday in UTC) expect(newDate('2023-01-13'),'to be a weekday');// passes (Friday in UTC) expect(newDate('2023-01-07'),'to be a weekday');// fails (Saturday in UTC)
Asserts that the subject is a weekday (Monday through Friday) in UTC.