import React from 'react' import { render, act } from '@testing-library/react' import DateRangeWidget, { getWidgetValue } from '../../../src/components/atoms/FormWidgets/DateRangeWidget' import { PublishFormSchema } from '../../../src/models/PublishForm' describe('Date Range Widget', () => { it('renders without crashing', () => { act(() => { const { container } = render( { /* */ }} onFocus={() => { /* */ }} onChange={() => { /* */ }} options={{}} required={false} /> ) expect(container.firstChild).toBeInTheDocument() }) }) it('getWidgetValue returns a correctly encoded string', () => { expect( getWidgetValue( new Date('2020-03-15T15:13:30.123Z'), new Date('2020-03-18T15:13:30.456Z'), false ) ).toEqual('["2020-03-15T15:13:30Z","2020-03-15T15:13:30Z"]') expect( getWidgetValue( new Date('2020-03-15T15:13:30.123Z'), new Date('2020-03-18T18:13:30.456Z'), true ) ).toEqual('["2020-03-15T15:13:30Z","2020-03-18T18:13:30Z"]') }) })