mirror of
https://github.com/apache/superset.git
synced 2026-04-10 11:55:24 +00:00
* bumping the js libs * New linting rules * More linting * More * Done linting * npm >=4.5.0 * Bumping node * Tweaking the build * Fixing the damn build * Fixing the apps
25 lines
703 B
JavaScript
25 lines
703 B
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import { describe, it } from 'mocha';
|
|
import { expect } from 'chai';
|
|
|
|
import { user } from './fixtures';
|
|
import RecentActivity from '../../../javascripts/profile/components/RecentActivity';
|
|
import TableLoader from '../../../javascripts/profile/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);
|
|
});
|
|
});
|