Skip to content

Commit ab44b78

Browse files
committed
Change: Update list of possible timezones
Our list of timezone was added 8 years ago and got no update since then. To have a more complete list of possible timezone and keep the list up to date, use the list of timezones from moment.js instead. Fixes #4308
1 parent c2cf4ed commit ab44b78

File tree

4 files changed

+18
-444
lines changed

4 files changed

+18
-444
lines changed

src/gmp/__tests__/timezones.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: AGPL-3.0-or-later
44
*/
55

6-
import {describe, test, expect} from '@gsa/testing';
6+
import {describe, test, expect, expectTypeOf} from '@gsa/testing';
77

88
import timezones from '../timezones';
99
import {isArray} from '../utils/identity';
@@ -13,11 +13,13 @@ describe('timezones tests', () => {
1313
expect(isArray(timezones)).toEqual(true);
1414
});
1515

16-
test('should contain objects with name properties', () => {
17-
expect(timezones.length).toBeGreaterThan(0);
16+
test('should contain more then one timezone', () => {
17+
expect(timezones.length).toBeGreaterThan(1);
18+
});
1819

20+
test('should contain timezones as strings', () => {
1921
for (const zone of timezones) {
20-
expect(zone.name).toBeDefined();
22+
expectTypeOf(zone).toBeString();
2123
}
2224
});
2325
});

0 commit comments

Comments
 (0)