Files
iNaturalistReactNative/tests/unit/components/ObsEdit/OtherDataSection.test.js
Johannes Klein b4516b7b25 Update react native to v0.78.x (#3043)
* Update package.json

* Update package.json

* Updates for native files with upgrade-helpers

* Update .flowconfig

* Update package-lock.json

* Update Podfile.lock

* Add react-dom types

* Update package-lock.json

* Wrong install

* Use types-react-codemod

* Update TaxonSearch.tsx

* Remove react-native-accessibility-engine dependency

This is currently not maintained and not compatible with RN 0.78

* Comment out accessibility tests

* Disable broken snapshot test

* Move broken test

* Move broken test

* Move broken test

* Remove duplicate file

* Move broken tests

* Move broken tests

* Move broken tests

* Move broken tests

* Move broken tests

* Move broken test

* Remove duplicate file

* Move broken tests
2025-08-09 13:47:46 +02:00

47 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 />
// );
// Disabled during the update to RN 0.78
// 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( );
} );
} );