Same folder name between presentational and smart components
This commit is contained in:
parent
e814ae1bb8
commit
1883a065f7
5 changed files with 4 additions and 4 deletions
|
|
@ -8,8 +8,8 @@ import { TableToolbar } from '@redhat-cloud-services/frontend-components';
|
|||
import { ToolbarGroup, ToolbarItem, EmptyState, EmptyStateVariant, EmptyStateIcon, EmptyStateBody, Title } from '@patternfly/react-core';
|
||||
import { PlusCircleIcon } from '@patternfly/react-icons';
|
||||
|
||||
import ImageBuildStatus from '../../PresentationalComponents/ImageBuildStatus/ImageBuildStatus';
|
||||
import Release from '../../PresentationalComponents/Release/Release';
|
||||
import ImageBuildStatus from '../../PresentationalComponents/ImagesTable/ImageBuildStatus';
|
||||
import Release from '../../PresentationalComponents/ImagesTable/Release';
|
||||
|
||||
import api from '../../api.js';
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import React from 'react';
|
|||
import { screen, render } from '@testing-library/react';
|
||||
import { renderWithReduxRouter } from '../../testUtils';
|
||||
import ImagesTable from '../../../SmartComponents/ImagesTable/ImagesTable';
|
||||
import ImageBuildStatus from '../../../PresentationalComponents/ImageBuildStatus/ImageBuildStatus';
|
||||
import ImageBuildStatus from '../../../PresentationalComponents/ImagesTable/ImageBuildStatus';
|
||||
import '@testing-library/jest-dom';
|
||||
|
||||
const store = {
|
||||
|
|
@ -39,7 +39,7 @@ describe('Images Table', () => {
|
|||
|
||||
// make sure the empty-state message isn't present
|
||||
const emptyState = screen.queryByTestId('empty-state');
|
||||
expect(emptyState).toBeNull();
|
||||
expect(emptyState).not.toBeInTheDocument();
|
||||
|
||||
// check table
|
||||
const table = screen.getByTestId('images-table');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue