: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
import { render, cleanup } from '@testing-library/react';
import { form } from './mockData';
import { SelectAction } from '../';
describe( 'submissions-select-action', () => {
it( 'Matches snapshot', () => {
const setEmailAction = jest.fn();
const { container } = render(
<SelectAction form={ form } setAction={ setEmailAction } />
expect( container ).toMatchSnapshot();