/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ import React from "react"; import { render } from "@testing-library/react"; import Combobox from "../Combobox"; test("renders a combobox", async () => { const wrapper = render( , ); expect(wrapper.container).toMatchSnapshot(); }); test("shows an error message", async () => { const wrapper = render( , ); expect(wrapper.container).toMatchSnapshot(); });