mirror of
https://github.com/apache/superset.git
synced 2026-04-16 06:34:52 +00:00
* [lint] turn no-undef back on, set browser, cypress, and mocha env's, and fix issues * [lint] fix undefined var in TimeTable.jsx
27 lines
793 B
JavaScript
27 lines
793 B
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import { expect } from 'chai';
|
|
import { user } from './fixtures';
|
|
import CreatedContent from '../../../src/profile/components/CreatedContent';
|
|
import TableLoader from '../../../src/components/TableLoader';
|
|
|
|
|
|
describe('CreatedContent', () => {
|
|
const mockedProps = {
|
|
user,
|
|
};
|
|
it('is valid', () => {
|
|
expect(
|
|
React.isValidElement(<CreatedContent {...mockedProps} />),
|
|
).to.equal(true);
|
|
});
|
|
it('renders 2 TableLoader', () => {
|
|
const wrapper = mount(<CreatedContent {...mockedProps} />);
|
|
expect(wrapper.find(TableLoader)).to.have.length(2);
|
|
});
|
|
it('renders 2 titles', () => {
|
|
const wrapper = mount(<CreatedContent {...mockedProps} />);
|
|
expect(wrapper.find('h3')).to.have.length(2);
|
|
});
|
|
});
|