Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@doodle/components / src / components / activities / DateStack / DateStack.spec.js
Size: Mime:
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();
  });
});