mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
test(frontend): use absolute path for src imports (#9761)
* test(frontend): use absolute path for src imports * Upgrade prettier, fix eslint
This commit is contained in:
@@ -18,9 +18,9 @@
|
||||
*/
|
||||
import React from 'react';
|
||||
import { mount } from 'enzyme';
|
||||
import ColumnElement from 'src/SqlLab/components/ColumnElement';
|
||||
|
||||
import { mockedActions, table } from './fixtures';
|
||||
import ColumnElement from '../../../src/SqlLab/components/ColumnElement';
|
||||
|
||||
describe('ColumnElement', () => {
|
||||
const mockedProps = {
|
||||
@@ -33,32 +33,17 @@ describe('ColumnElement', () => {
|
||||
it('renders a proper primary key', () => {
|
||||
const wrapper = mount(<ColumnElement column={table.columns[0]} />);
|
||||
expect(wrapper.find('i.fa-key')).toHaveLength(1);
|
||||
expect(
|
||||
wrapper
|
||||
.find('.col-name')
|
||||
.first()
|
||||
.text(),
|
||||
).toBe('id');
|
||||
expect(wrapper.find('.col-name').first().text()).toBe('id');
|
||||
});
|
||||
it('renders a multi-key column', () => {
|
||||
const wrapper = mount(<ColumnElement column={table.columns[1]} />);
|
||||
expect(wrapper.find('i.fa-link')).toHaveLength(1);
|
||||
expect(wrapper.find('i.fa-bookmark')).toHaveLength(1);
|
||||
expect(
|
||||
wrapper
|
||||
.find('.col-name')
|
||||
.first()
|
||||
.text(),
|
||||
).toBe('first_name');
|
||||
expect(wrapper.find('.col-name').first().text()).toBe('first_name');
|
||||
});
|
||||
it('renders a column with no keys', () => {
|
||||
const wrapper = mount(<ColumnElement column={table.columns[2]} />);
|
||||
expect(wrapper.find('i')).toHaveLength(0);
|
||||
expect(
|
||||
wrapper
|
||||
.find('.col-name')
|
||||
.first()
|
||||
.text(),
|
||||
).toBe('last_name');
|
||||
expect(wrapper.find('.col-name').first().text()).toBe('last_name');
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user