UNPKG

xchain-components

Version:
15 lines (11 loc) 379 B
/* @flow */ /* eslint react/jsx-filename-extension: 0 */ import React from 'react'; import { shallow } from 'enzyme'; import XMessage from '..'; describe('XMessage', () => { it('should render correctly', () => { const component = shallow(<XMessage header='Welcome to my app' content='You are ready to use the app' />); expect(component).toMatchSnapshot(); }); });