mirror of
https://github.com/apache/superset.git
synced 2026-04-17 15:15:20 +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
25 lines
674 B
JavaScript
25 lines
674 B
JavaScript
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import { expect } from 'chai';
|
|
|
|
import Link from '../../../src/SqlLab/components/Link';
|
|
|
|
describe('Link', () => {
|
|
const mockedProps = {
|
|
tooltip: 'This is a tooltip',
|
|
href: 'http://www.airbnb.com',
|
|
};
|
|
it('renders', () => {
|
|
expect(React.isValidElement(<Link>TEST</Link>)).to.equal(true);
|
|
});
|
|
it('renders with props', () => {
|
|
expect(
|
|
React.isValidElement(<Link {...mockedProps} >TEST</Link>),
|
|
).to.equal(true);
|
|
});
|
|
it('renders an anchor tag', () => {
|
|
const wrapper = shallow(<Link {...mockedProps} >TEST</Link>);
|
|
expect(wrapper.find('a')).to.have.length(1);
|
|
});
|
|
});
|