test: Fix act errors in DatabaseList test (#22970)

This commit is contained in:
Lyndsi Kay Williams 2023-02-03 07:25:52 -06:00 committed by GitHub
parent deba0fd7c1
commit 39f15b8d95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 9 deletions

View File

@ -64,6 +64,14 @@ jest.mock('react-redux', () => ({
useSelector: jest.fn(),
}));
jest.mock('src/components/Icons/Icon', () => ({
__esModule: true,
default: ({ fileName, role }) => (
<span role={role ?? 'img'} aria-label={fileName.replace('_', '-')} />
),
StyledIcon: () => <span />,
}));
fetchMock.get(databasesInfoEndpoint, {
permissions: ['can_write'],
});
@ -131,27 +139,27 @@ describe('Admin DatabaseList', () => {
await waitForComponentToPaint(wrapper);
});
it('renders', () => {
test('renders', () => {
expect(wrapper.find(DatabaseList)).toExist();
});
it('renders a SubMenu', () => {
test('renders a SubMenu', () => {
expect(wrapper.find(SubMenu)).toExist();
});
it('renders a SubMenu with no tabs', () => {
test('renders a SubMenu with no tabs', () => {
expect(wrapper.find(SubMenu).props().tabs).toBeUndefined();
});
it('renders a DatabaseModal', () => {
test('renders a DatabaseModal', () => {
expect(wrapper.find(DatabaseModal)).toExist();
});
it('renders a ListView', () => {
test('renders a ListView', () => {
expect(wrapper.find(ListView)).toExist();
});
it('fetches Databases', () => {
test('fetches Databases', () => {
const callsD = fetchMock.calls(/database\/\?q/);
expect(callsD).toHaveLength(2);
expect(callsD[0][0]).toMatchInlineSnapshot(
@ -159,7 +167,7 @@ describe('Admin DatabaseList', () => {
);
});
it('deletes', async () => {
test('deletes', async () => {
act(() => {
wrapper.find('[data-test="database-delete"]').first().props().onClick();
});
@ -189,7 +197,7 @@ describe('Admin DatabaseList', () => {
expect(fetchMock.calls(/database\/0/, 'DELETE')).toHaveLength(1);
});
it('filters', async () => {
test('filters', async () => {
const filtersWrapper = wrapper.find(Filters);
act(() => {
filtersWrapper
@ -217,7 +225,7 @@ describe('Admin DatabaseList', () => {
);
});
it('should not render dropdown menu button if user is not admin', () => {
test('should not render dropdown menu button if user is not admin', async () => {
userSelectorMock.mockReturnValue({
createdOn: '2021-05-27T18:12:38.952304',
email: 'alpha@gmail.com',
@ -240,6 +248,8 @@ describe('Admin DatabaseList', () => {
<DatabaseList />
</Provider>,
);
await waitForComponentToPaint(newWrapper);
expect(newWrapper.find('.dropdown-menu-links')).not.toExist();
});
});