mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-04-05 06:44:27 +02:00
15 lines
335 B
JavaScript
15 lines
335 B
JavaScript
import React from 'react';
|
|
import renderer from 'react-test-renderer';
|
|
import Meta from './Meta';
|
|
|
|
describe('Meta', () => {
|
|
it('renders correctly', () => {
|
|
const props = {
|
|
date: '2016-09-01T23:46:37.121Z'
|
|
};
|
|
|
|
const tree = renderer.create(<Meta {...props} />).toJSON();
|
|
expect(tree).toMatchSnapshot();
|
|
});
|
|
});
|