ws-nextjs-app/pages/[service]/send/[id]/SubmitButton/index.test.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import {
  act,
  render,
} from '#app/components/react-testing-library-with-providers';

import SubmitButton from '.';

describe('SubmitButton', () => {
  it('should render a submit button with an associated label', async () => {
    const { container } = await act(() => {
      return render(<SubmitButton />, { service: 'news' });
    });

    const button = container.querySelector('button[type=submit]');

    expect(button).toBeInTheDocument();
    expect(button).toMatchSnapshot();
  });
});