Files
iNaturalistReactNative/tests/unit/components/SharedComponents/ObservationsFlashList/ObsGridItem.test.js
Amanda Bullington 045ce6f789 Improve Jest performance (#1160)
* Use faker import with specific locale

* Add global beforeAll to initiate i18next
2024-02-16 16:17:00 -08:00

69 lines
2.1 KiB
JavaScript

import { render, screen } from "@testing-library/react-native";
import ObsGridItem from "components/SharedComponents/ObservationsFlashList/ObsGridItem";
import React from "react";
import factory from "tests/factory";
describe( "ObsGridItem", () => {
describe( "for an observation with a photo", ( ) => {
const observationWithPhoto = factory( "LocalObservation", {
observationPhotos: [factory( "LocalObservationPhoto" )]
} );
it( "should render", () => {
const observationWithStablePhotoUrl = factory( "LocalObservation", {
uuid: "00000000-0000-0000-0000-000000000000",
observationPhotos: [
factory( "LocalObservationPhoto", {
photo: factory( "LocalPhoto", {
url: "https://inaturalist-open-data.s3.amazonaws.com/photos/1/large.jpeg"
} )
} )
]
} );
render(
<ObsGridItem
observation={observationWithStablePhotoUrl}
uploadState={{ uploadProgress: false }}
/>
);
expect( screen ).toMatchSnapshot();
} );
it( "should have photo", async ( ) => {
render(
<ObsGridItem
observation={observationWithPhoto}
uploadState={{ uploadProgress: false }}
/>
);
expect( await screen.findByTestId( "ObsList.photo" ) ).toBeTruthy( );
} );
} );
describe( "for an observation without a photo", ( ) => {
const observationWithoutPhoto = factory( "LocalObservation", {
uuid: "00000000-0000-0000-0000-000000000000"
} );
it( "should render", ( ) => {
render(
<ObsGridItem
observation={observationWithoutPhoto}
uploadState={{ uploadProgress: false }}
/>
);
expect( screen ).toMatchSnapshot();
} );
it( "should have an iconic taxon icon", async ( ) => {
render(
<ObsGridItem
observation={observationWithoutPhoto}
uploadState={{ uploadProgress: false }}
/>
);
expect( await screen.findByTestId( "IconicTaxonName.iconicTaxonIcon" ) ).toBeTruthy( );
} );
} );
} );