@activelylearn/material-ui
Version:
Material-UI's workspace package
51 lines (43 loc) • 1.5 kB
JavaScript
import React from 'react';
import { assert } from 'chai';
import RadioButtonCheckedIcon from '../internal/svg-icons/RadioButtonChecked';
import RadioButtonUncheckedIcon from '../internal/svg-icons/RadioButtonUnchecked';
import { getClasses, createShallow, createMount } from '../test-utils';
import SwitchBase from '../internal/SwitchBase';
import Radio from './Radio';
describe('<Radio />', () => {
let shallow;
let classes;
let mount;
before(() => {
shallow = createShallow({ dive: true });
classes = getClasses(<Radio />);
mount = createMount();
});
after(() => {
mount.cleanUp();
});
describe('styleSheet', () => {
it('should have the classes required for SwitchBase', () => {
assert.strictEqual(typeof classes.root, 'string');
assert.strictEqual(typeof classes.checked, 'string');
assert.strictEqual(typeof classes.disabled, 'string');
});
});
it('should be using SwitchBase', () => {
const wrapper = shallow(<Radio />);
assert.strictEqual(wrapper.type(), SwitchBase);
});
describe('prop: unchecked', () => {
it('should render an unchecked icon', () => {
const wrapper = mount(<Radio />);
assert.strictEqual(wrapper.find(RadioButtonUncheckedIcon).length, 1);
});
});
describe('prop: checked', () => {
it('should render a checked icon', () => {
const wrapper = mount(<Radio checked />);
assert.strictEqual(wrapper.find(RadioButtonCheckedIcon).length, 1);
});
});
});