Move helper inside test only
This commit is contained in:
Родитель
8bbbbfec8e
Коммит
b04877aafc
|
@ -5,7 +5,13 @@ import { shallow } from 'enzyme';
|
|||
import { DateFormat} from '../../Common';
|
||||
import { DatePicker} from './DatePicker';
|
||||
import { describe, it } from 'mocha';
|
||||
import { adjustForTimezone } from './helpers';
|
||||
|
||||
const adjustForTimezone = (dateStr) => {
|
||||
let date = new Date(dateStr);
|
||||
let timeOffsetInMS = date.getTimezoneOffset() * 60000;
|
||||
date.setTime(date.getTime() - timeOffsetInMS);
|
||||
return date.toISOString();
|
||||
};
|
||||
|
||||
describe('DatePicker', () => {
|
||||
let clock;
|
||||
|
|
|
@ -52,10 +52,3 @@ export const getLocalMonths = (locale) => {
|
|||
|
||||
return monthNames;
|
||||
};
|
||||
|
||||
export const adjustForTimezone = (dateStr) => {
|
||||
let date = new Date(dateStr);
|
||||
let timeOffsetInMS = date.getTimezoneOffset() * 60000;
|
||||
date.setTime(date.getTime() - timeOffsetInMS);
|
||||
return date.toISOString();
|
||||
};
|
Загрузка…
Ссылка в новой задаче