diff --git a/packages/core/src/layout/HomepageTimer/HomepageTimer.test.tsx b/packages/core/src/layout/HomepageTimer/HomepageTimer.test.tsx new file mode 100644 index 0000000000..40b0c266e0 --- /dev/null +++ b/packages/core/src/layout/HomepageTimer/HomepageTimer.test.tsx @@ -0,0 +1,53 @@ +/* + * Copyright 2021 Spotify AB + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import { renderWithEffects } from '@backstage/test-utils'; +import { HomepageTimer } from './HomepageTimer'; +import React from 'react'; +import { lightTheme } from '@backstage/theme'; +import { ThemeProvider } from '@material-ui/core'; + +import { + ApiProvider, + ApiRegistry, + ConfigReader, + ConfigApi, + configApiRef, +} from '@backstage/core-api'; + +it('changes default timezone to GMT', async () => { + const configApi: ConfigApi = new ConfigReader({ + homepage: { + clocks: [ + { + label: 'New York', + timezone: 'America/New_Pork', + }, + ], + }, + context: 'test', + }); + + const rendered = await renderWithEffects( + + + + + , + ); + + expect(rendered.getByText('GMT')).toBeInTheDocument(); +}); diff --git a/packages/core/src/layout/HomepageTimer/HomepageTimer.tsx b/packages/core/src/layout/HomepageTimer/HomepageTimer.tsx index 219665599c..2adbf8fbd5 100644 --- a/packages/core/src/layout/HomepageTimer/HomepageTimer.tsx +++ b/packages/core/src/layout/HomepageTimer/HomepageTimer.tsx @@ -51,10 +51,10 @@ function getTimes(configApi: ConfigApi) { } catch (e) { // eslint-disable-next-line no-console console.warn( - `The timezone ${options.timeZone} is invalid. Defaulting to America/Los Angeles`, + `The timezone ${options.timeZone} is invalid. Defaulting to GMT`, ); - options.timeZone = 'America/Los_Angeles'; - label = 'Los Angeles'; + options.timeZone = 'GMT'; + label = 'GMT'; } const time = d.toLocaleTimeString(lang, options);