Project

General

Profile

Download (302 Bytes) Statistics
| Branch: | Tag: | Revision:
import React from 'react';
import { shallow } from '@theforeman/test';
import { DecadeViewHeader } from './DecadeViewHeader';

test('DecadeViewHeader is working properly', () => {
const component = shallow(<DecadeViewHeader currDecade={2010} />);

expect(component.render()).toMatchSnapshot();
});
(9-9/22)