Skip to content

Create tests for Toast component #2343

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/modules/IDE/components/Toast.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function Toast() {
return null;
}
return (
<section className="toast">
<section className="toast" role="status" aria-live="polite">
<p>{t(text)}</p>
<button
className="toast__close"
Expand Down
50 changes: 50 additions & 0 deletions client/modules/IDE/components/Toast.test.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
import React from 'react';
import {
act,
reduxRender,
screen,
fireEvent,
waitFor
} from '../../../test-utils';
import { showToast } from '../actions/toast';
import Toast from './Toast';

describe(`Toast`, () => {
it('is hidden by default', () => {
reduxRender(<Toast />);
expect(screen.queryByRole('status')).not.toBeInTheDocument();
});

it('opens when an action is dispatched', async () => {
const { store } = reduxRender(<Toast />);
act(() => {
store.dispatch(showToast('Toast.SketchSaved'));
});

const toast = screen.queryByRole('status');
expect(toast).toBeVisible();
expect(toast).toHaveTextContent('Sketch saved.');
});

it('closes automatically after time', async () => {
const { store } = reduxRender(<Toast />);
act(() => {
store.dispatch(showToast('Toast.SketchSaved', 100));
});

expect(screen.queryByRole('status')).toBeInTheDocument();

await waitFor(() => {
expect(screen.queryByRole('status')).not.toBeInTheDocument();
});
});

it('closes when "X" button is pressed', () => {
reduxRender(<Toast />, {
initialState: { toast: { isVisible: true, text: 'Hello World' } }
});
const button = screen.getByRole('button');
fireEvent.click(button);
expect(screen.queryByRole('status')).not.toBeInTheDocument();
});
});