Project

General

Profile

« Previous | Next » 

Revision 89b8fc37

Added by Amir Fefer over 4 years ago

Fixes #28488 - consume jest config from env

View differences:

webpack/assets/javascripts/react_app/components/common/DateTimePicker/DatePicker.test.js
import React from 'react';
import { shallow, mount } from 'enzyme';
import toJson from 'enzyme-to-json';
import { shallow, mount } from '@theforeman/test';
import DatePicker from './DatePicker';
test('DatePicker is working properly', () => {
const component = shallow(<DatePicker value="2/21/2019 , 2:22:31 PM" />);
expect(toJson(component.render())).toMatchSnapshot();
expect(component.render()).toMatchSnapshot();
});
test('Edit form of DatePicker', () => {
const component = mount(<DatePicker value="2/21/2019 " />);
expect(toJson(component.render())).toMatchSnapshot();
expect(component.render()).toMatchSnapshot();
component
.find('input')
.simulate('change', { target: { value: '2/22/2019 ' } });

Also available in: Unified diff