DocSpace-buildtools/web/ASC.Web.Components/src/components/row/row.test.js

19 lines
350 B
JavaScript
Raw Normal View History

import React from 'react';
import { mount } from 'enzyme';
import Row from '.';
describe('<Row />', () => {
it('renders without error', () => {
const wrapper = mount(
<Row
checked={false}
contextOptions={[]}
>
<span>Some text</span>
</Row>
);
expect(wrapper).toExist();
});
});