Files
iNaturalistReactNative/tests/unit/components/ObsEdit/OtherDataSection.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

46 lines
1.5 KiB
JavaScript

import { fireEvent, screen } from "@testing-library/react-native";
import OtherDataSection from "components/ObsEdit/OtherDataSection";
import React from "react";
import { renderComponent } from "tests/helpers/render";
describe( "OtherDataSection", () => {
it( "has no accessibility errors", () => {
const otherData = (
<OtherDataSection />
);
expect( otherData ).toBeAccessible();
} );
it( "opens notes sheet when notes dropdown is tapped", ( ) => {
renderComponent( <OtherDataSection /> );
const notesDropdown = screen.getByLabelText( /Add optional notes/ );
expect( notesDropdown ).toBeVisible( );
fireEvent.press( notesDropdown );
const notesHeader = screen.getByText( /NOTES/ );
expect( notesHeader ).toBeVisible( );
} );
it( "opens captive sheet when captive dropdown is tapped", ( ) => {
renderComponent( <OtherDataSection /> );
const captiveDropdown = screen.getByLabelText( /Select captive or cultivated status/ );
fireEvent.press( captiveDropdown );
const captiveHeader = screen.getByText( /WILD STATUS/ );
expect( captiveHeader ).toBeVisible( );
} );
it( "opens geoprivacy sheet when geoprivacy dropdown is tapped", ( ) => {
renderComponent( <OtherDataSection /> );
const geoprivacyDropdown = screen.getByLabelText( /Select geoprivacy status/ );
fireEvent.press( geoprivacyDropdown );
const geoprivacyHeader = screen.getByText( /GEOPRIVACY/ );
expect( geoprivacyHeader ).toBeVisible( );
} );
} );