Repository URL to install this package:
|
Version:
8.1.0-rc.5 ▾
|
import React from 'react';
import { shallow } from 'enzyme';
import DateStack from './DateStack';
describe('DateStack', () => {
it('matches snapshot', () => {
const dateStack = shallow(<DateStack day="12" month="Febru" />);
expect(dateStack).toMatchSnapshot();
});
});