Files
superset2/superset/assets/spec/javascripts/profile/App_spec.jsx
Maxime Beauchemin 7e1852ee88 User profile pages (favorites, created content, recent activity, security & access) (#1615)
* Super

* User profile page

* Fixing python style

* Python unit tests

* Touchups and js tests

* Addressing comments
2016-11-19 21:23:44 -08:00

28 lines
787 B
JavaScript

import React from 'react';
import App from '../../../javascripts/profile/components/App';
import { Col, Row, Tab } from 'react-bootstrap';
import { mount } from 'enzyme';
import { describe, it } from 'mocha';
import { expect } from 'chai';
import { user } from './fixtures';
describe('App', () => {
const mockedProps = {
user,
};
it('is valid', () => {
expect(
React.isValidElement(<App {...mockedProps} />)
).to.equal(true);
});
it('renders 2 Col', () => {
const wrapper = mount(<App {...mockedProps} />);
expect(wrapper.find(Row)).to.have.length(1);
expect(wrapper.find(Col)).to.have.length(2);
});
it('renders 4 Tabs', () => {
const wrapper = mount(<App {...mockedProps} />);
expect(wrapper.find(Tab)).to.have.length(4);
});
});