I'm testinng a react component using the RTL, and everytime I ran a test, I get,
"messageParent" can only be used inside a worker
**Here's the code
describe('Header', () => {
  it('validates header component is rendered', () => {
    const { getByTestId } = render(<Header patientName="Jake Bland" />);
    expect(getByTestId('patient-name')).toHaveTextContent(/^Jake Bland$/);
    expect(getByTestId('dateRange')).toBe(dateRange);
  });
});
Any help on this will be greatly appreciated.
                        
I ran into this error while testing to see if a
<select>had the right number of options, when using this:@testing-library/react must be trying to do something strange to get the length of the HTML collection, I have. So I added
.lengthto the query:All was well.