// 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 Label from '../../../../src/components/ui/Label';
import lightTheme from '../../../../src/theme/light';
import { renderWithTheme } from '../../../test-helpers';
describe('Label', () => {
it('should render a Label', () => {
const component = ;
const { queryByTestId } = renderWithTheme(lightTheme, component);
expect(queryByTestId('label')).toBeInTheDocument();
});
it('should render a Label with content', () => {
const labelContent = 'this is a label';
const component = ;
const { getByTestId } = renderWithTheme(lightTheme, component);
const label = getByTestId('label');
expect(label).toHaveTextContent(labelContent);
});
});