mirror of
https://github.com/apache/superset.git
synced 2026-04-10 03:45:22 +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
24 lines
641 B
JavaScript
24 lines
641 B
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import { expect } from 'chai';
|
|
|
|
import { user } from './fixtures';
|
|
import RecentActivity from '../../../src/profile/components/RecentActivity';
|
|
import TableLoader from '../../../src/components/TableLoader';
|
|
|
|
|
|
describe('RecentActivity', () => {
|
|
const mockedProps = {
|
|
user,
|
|
};
|
|
it('is valid', () => {
|
|
expect(
|
|
React.isValidElement(<RecentActivity {...mockedProps} />),
|
|
).to.equal(true);
|
|
});
|
|
it('renders a TableLoader', () => {
|
|
const wrapper = mount(<RecentActivity {...mockedProps} />);
|
|
expect(wrapper.find(TableLoader)).to.have.length(1);
|
|
});
|
|
});
|