chore: Moves TableSelector tests to component's folder (#13411)

This commit is contained in:
Michael S. Molina 2021-03-03 20:44:36 -03:00 committed by GitHub
parent dc1eb305b1
commit cfc83c271c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -29,7 +29,7 @@ import waitForComponentToPaint from 'spec/helpers/waitForComponentToPaint';
import DatabaseSelector from 'src/components/DatabaseSelector';
import TableSelector from 'src/components/TableSelector';
import { initialState, tables } from '../sqllab/fixtures';
import { initialState, tables } from 'spec/javascripts/sqllab/fixtures';
const mockStore = configureStore([thunk]);
const store = mockStore(initialState);

View File

@ -27,9 +27,9 @@ import { AsyncSelect, CreatableSelect, Select } from 'src/components/Select';
import FormLabel from 'src/components/FormLabel';
import DatabaseSelector from './DatabaseSelector';
import RefreshLabel from './RefreshLabel';
import CertifiedIconWithTooltip from './CertifiedIconWithTooltip';
import DatabaseSelector from 'src/components/DatabaseSelector';
import RefreshLabel from 'src/components/RefreshLabel';
import CertifiedIconWithTooltip from 'src/components/CertifiedIconWithTooltip';
const FieldTitle = styled.p`
color: ${({ theme }) => theme.colors.secondary.light2};