@activelylearn/material-ui
Version:
Material-UI's workspace package
51 lines (42 loc) • 1.56 kB
JavaScript
import React from 'react';
import { assert } from 'chai';
import { createShallow, getClasses } from '../test-utils';
import Table from './Table';
describe('<Table />', () => {
let shallow;
let classes;
before(() => {
shallow = createShallow({ dive: true });
classes = getClasses(<Table>foo</Table>);
});
it('should render a table', () => {
const wrapper = shallow(<Table>foo</Table>);
assert.strictEqual(wrapper.name(), 'table');
});
it('should render a div', () => {
const wrapper = shallow(<Table component="div">foo</Table>);
assert.strictEqual(wrapper.name(), 'div');
});
it('should spread custom props on the root node', () => {
const wrapper = shallow(<Table data-my-prop="woofTable">foo</Table>);
assert.strictEqual(
wrapper.prop('data-my-prop'),
'woofTable',
'custom prop should be woofTable',
);
});
it('should render with the user and root classes', () => {
const wrapper = shallow(<Table className="woofTable">foo</Table>);
assert.strictEqual(wrapper.hasClass('woofTable'), true);
assert.strictEqual(wrapper.hasClass(classes.root), true);
});
it('should render children', () => {
const children = <tbody className="test" />;
const wrapper = shallow(<Table>{children}</Table>);
assert.strictEqual(wrapper.childAt(0).equals(children), true);
});
it('should define table in the child context', () => {
const wrapper = shallow(<Table>foo</Table>);
assert.deepStrictEqual(wrapper.instance().getChildContext().table, {});
});
});