mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-04-20 06:53:56 -04:00
* Refactor to boolean prop for white or gray * Rename prop * Add component for comments count * Reorder strings * Use CommentsCount * Add identifications count component * Add snapshot test for ActivityCount * Add tests TODO for component * Updated with new icons * Add snapshot tests * Update ActivityCount.test.js.snap * Unit test for count text * Remove testing comments count in ObsList test * Update with changes from main * Update IdentificationsCount.test.js.snap * Remove components from ObsStatus
38 lines
1013 B
JavaScript
38 lines
1013 B
JavaScript
import { render, screen } from "@testing-library/react-native";
|
|
import { ActivityCount } from "components/SharedComponents";
|
|
import initI18next from "i18n/initI18next";
|
|
import React from "react";
|
|
|
|
const count = 1;
|
|
const icon = "comments";
|
|
const testID = "some_id";
|
|
|
|
describe( "ActivityCount", () => {
|
|
beforeAll( async () => {
|
|
await initI18next();
|
|
} );
|
|
|
|
it( "renders reliably", () => {
|
|
// Snapshot test
|
|
render( <ActivityCount count={count} icon={icon} testID={testID} /> );
|
|
|
|
expect( screen ).toMatchSnapshot();
|
|
} );
|
|
|
|
it( "displays the count parameter as text", () => {
|
|
render( <ActivityCount count={count} icon={icon} testID={testID} /> );
|
|
|
|
const activityCount = screen.getByText( count.toString() );
|
|
expect( activityCount ).toBeTruthy();
|
|
} );
|
|
|
|
// a11y test
|
|
it( "should not have accessibility errors", () => {
|
|
const activityCount = (
|
|
<ActivityCount count={count} icon={icon} testID={testID} />
|
|
);
|
|
|
|
expect( activityCount ).toBeAccessible();
|
|
} );
|
|
} );
|