rsuite
Version:
A suite of react components
27 lines (22 loc) • 887 B
JavaScript
import React from 'react';
import MenuWrapper from '../MenuWrapper';
import { getDOMNode } from '@test/testUtils';
describe('MenuWrapper', () => {
it('Should render a menu', () => {
const instance = getDOMNode(<MenuWrapper />);
assert.ok(instance.className.match(/\bpicker-menu\b/));
});
it('Should have a custom className', () => {
const instance = getDOMNode(<MenuWrapper className="custom" />);
assert.ok(instance.className.match(/\bcustom\b/));
});
it('Should have a custom style', () => {
const fontSize = '12px';
const instance = getDOMNode(<MenuWrapper style={{ fontSize }} />);
assert.equal(instance.style.fontSize, fontSize);
});
it('Should have a custom className prefix', () => {
const instance = getDOMNode(<MenuWrapper classPrefix="custom-prefix" />);
assert.ok(instance.className.match(/\bcustom-prefix\b/));
});
});