test('removes a new option if the user does not select it', async () => {
  render(<AsyncSelect {...defaultProps} allowNewOptions />);
  await type(NEW_OPTION);
  expect(await findSelectOption(NEW_OPTION)).toBeInTheDocument();
  await type('k');