// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import '@testing-library/jest-dom'; import React from 'react'; import SecondaryButton from '../../../../src/components/ui/Button/SecondaryButton'; import lightTheme from '../../../../src/theme/light'; import { renderWithTheme } from '../../../test-helpers'; describe('Secondary Button', () => { it('should render a secondary Button', () => { const labelText = 'Secondary Button'; const component = ; const { queryByTestId } = renderWithTheme(lightTheme, component); expect(queryByTestId('button')).toBeInTheDocument(); }); });