Files
iNaturalistReactNative/tests/unit/components/SharedComponents/IconicTaxonChooser.test.js
Ryan Stelly b78be9243d lint rule & autofix for "trailing comma" (#3299)
* (lint) MOB-1063 enforce trailing commas

* autofix trailing commas

* manually fix newly introduced maxlen violations

* add trailing comma convention to i18n build
2025-12-22 20:17:13 -06:00

43 lines
1.2 KiB
JavaScript

import { render, screen } from "@testing-library/react-native";
import { IconicTaxonChooser } from "components/SharedComponents";
import React from "react";
import factory from "tests/factory";
const mockData = [factory( "RemoteTaxon" )];
jest.mock( "sharedHooks/useAuthenticatedQuery", ( ) => ( {
__esModule: true,
default: ( ) => ( {
data: mockData,
} ),
} ) );
describe( "IconicTaxonChooser", () => {
it( "should be accessible", () => {
// const mockTaxon = factory( "RemoteTaxon", {
// name: "Aves"
// } );
// Disabled during the update to RN 0.78
// expect(
// <IconicTaxonChooser chosen={[mockTaxon.name.toLowerCase()]} />
// ).toBeAccessible( );
} );
it( "should show an iconic taxa as selected", async ( ) => {
const mockTaxon = factory( "RemoteTaxon", {
name: "Plantae",
iconic_taxon_name: "Plantae",
} );
render( <IconicTaxonChooser chosen={[mockTaxon.name.toLowerCase()]} /> );
const plantButton = await screen.findByTestId(
`IconicTaxonButton.${mockTaxon.name.toLowerCase( )}`,
);
const birdButton = await screen.findByTestId( "IconicTaxonButton.aves" );
expect( plantButton ).toBeSelected();
expect( birdButton ).not.toBeSelected();
} );
} );