react-draft-wysiwyg
Version:
A wysiwyg on top of DraftJS.
15 lines (12 loc) • 306 B
JavaScript
/* @flow */
import React from 'react';
import { expect } from 'chai';
import { mount } from 'enzyme';
import Spinner from '..';
describe('Option test suite', () => {
it('should have a span when rendered', () => {
expect(mount(
<Spinner />,
).childAt(0).type()).to.equal('div');
});
});