Skip to content

Commit

Permalink
Removes unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-s-molina committed Nov 8, 2021
1 parent 43c4e37 commit 9769f5c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/
import React from 'react';
import moment from 'moment-timezone';
import { render, screen, wait, waitFor } from 'spec/helpers/testing-library';
import { render, screen } from 'spec/helpers/testing-library';
import userEvent from '@testing-library/user-event';
import TimezoneSelector from './index';

Expand All @@ -42,7 +42,7 @@ describe('TimezoneSelector', () => {
});
it('should properly select values from the offsetsToName map', async () => {
jest.spyOn(moment.tz, 'guess').mockReturnValue('America/New_York');
const { debug } = render(
render(
<TimezoneSelector
onTimezoneChange={onTimezoneChange}
timezone={timezone}
Expand Down

0 comments on commit 9769f5c

Please sign in to comment.