mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-01-17 02:08:57 -05:00
* Use custom header instead of react nav set options; expand back button padding; closes #907 * Wrap ObsEdit in SafeAreaView
11 lines
250 B
JavaScript
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();
|
|
} );
|
|
} );
|