// 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 RosterGroup from '../../../../src/components/ui/Roster/RosterGroup';
import lightTheme from '../../../../src/theme/light';
import { renderWithTheme } from '../../../test-helpers';
describe('RosterCell', () => {
it('should render a title', () => {
const component = ;
const { getByText } = renderWithTheme(lightTheme, component);
expect(getByText('Present')).toBeInTheDocument();
});
it('should render a badge', () => {
const component = ;
const { getByText } = renderWithTheme(lightTheme, component);
expect(getByText('5')).toBeInTheDocument();
});
});