import Fixture from '../../Fixture'; import FixtureSet from '../../FixtureSet'; import TestCase from '../../TestCase'; import SwitchDateTestCase from './switch-date-test-case'; const React = window.React; class DateInputFixtures extends React.Component { render() { return (
  • Type a date into the date picker
  • Toggle "Switch type"
  • The month, day, and year values should correctly transfer. The hours/minutes/seconds should not be discarded.
    ); } } export default DateInputFixtures;