Matt McCherry
Results
2
issues of
Matt McCherry
## Description This PR fixes an issue where `Intl.DateTimeFormat.format()` and `formatToParts()` methods ignored the mocked clock when called without arguments, causing inconsistent behavior in tests that use `jasmine.clock().mockDate()`. The fix...
### Steps to Reproduce ``` describe('date formatting with mock clock', () => { beforeEach(() => { jasmine.clock().install(); jasmine.clock().mockDate(new Date(2020, 11, 20, 10, 10)); // Dec 20, 2020 }); afterEach(() =>...
feature request