Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -282,9 +282,10 @@ describe('to_esql', () => {
expect(esql).toEqual(undefined);
});

it('should work with iana timezones that fall udner utc+0', () => {
it('should work with iana timezones that fall under UTC+0', () => {
uiSettings.get.mockImplementation((key: string) => {
if (key === 'dateFormat:tz') return 'Europe/London';
// There are only few countries that falls under UTC all year round, others just fall into that configuration half hear when not in DST
if (key === 'dateFormat:tz') return 'Atlantic/Reykjavik';
return defaultUiSettingsGet(key);
});

Expand Down