Files
iNaturalistReactNative/tests/unit/components/SharedComponents/Buttons/BackButton.test.js
Amanda Bullington 74f4238079 Increase pressable area of back button, Obs Edit (#931)
* Use custom header instead of react nav set options; expand back button padding; closes #907

* Wrap ObsEdit in SafeAreaView
2023-11-28 15:51:09 -08:00

11 lines
250 B
JavaScript

import { BackButton } from "components/SharedComponents";
import React from "react";
describe( "BackButton", () => {
it( "has no accessibility errors", () => {
const button = <BackButton />;
expect( button ).toBeAccessible();
} );
} );