Fix ChatPage tests

environments/review-renovate-m-t65ngm/deployments/2154
Alex Gleason 2 years ago
parent 273266d9ac
commit bd9bad9a4c
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

@ -6,7 +6,7 @@ import { __stub } from 'soapbox/api';
import { normalizeAccount } from 'soapbox/normalizers'; import { normalizeAccount } from 'soapbox/normalizers';
import { ReducerAccount } from 'soapbox/reducers/accounts'; import { ReducerAccount } from 'soapbox/reducers/accounts';
import { render, screen } from '../../../../../jest/test-helpers'; import { render, screen, waitFor } from '../../../../../jest/test-helpers';
import ChatPage from '../chat-page'; import ChatPage from '../chat-page';
describe('<ChatPage />', () => { describe('<ChatPage />', () => {
@ -48,9 +48,12 @@ describe('<ChatPage />', () => {
await userEvent.click(screen.getByTestId('button')); await userEvent.click(screen.getByTestId('button'));
expect(screen.getByTestId('chat-page')).toBeInTheDocument(); expect(screen.getByTestId('chat-page')).toBeInTheDocument();
await waitFor(() => {
expect(screen.getByTestId('toast')).toHaveTextContent('Chat Settings updated successfully'); expect(screen.getByTestId('toast')).toHaveTextContent('Chat Settings updated successfully');
}); });
}); });
});
describe('when the API returns an error', () => { describe('when the API returns an error', () => {
beforeEach(() => { beforeEach(() => {
@ -77,8 +80,11 @@ describe('<ChatPage />', () => {
it('renders the Chats', async () => { it('renders the Chats', async () => {
render(<ChatPage />, undefined, store); render(<ChatPage />, undefined, store);
await userEvent.click(screen.getByTestId('button')); await userEvent.click(screen.getByTestId('button'));
await waitFor(() => {
expect(screen.getByTestId('toast')).toHaveTextContent('Chat Settings failed to update.'); expect(screen.getByTestId('toast')).toHaveTextContent('Chat Settings failed to update.');
}); });
}); });
}); });
});
}); });

Loading…
Cancel
Save