mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-01-21 04:09:23 -05:00
* (lint) MOB-1063 enforce trailing commas * autofix trailing commas * manually fix newly introduced maxlen violations * add trailing comma convention to i18n build
25 lines
856 B
JavaScript
25 lines
856 B
JavaScript
import { BackButton } from "components/SharedComponents";
|
|
import React from "react";
|
|
import { View } from "react-native";
|
|
import { wrapInNavigationContainer } from "tests/helpers/render";
|
|
|
|
// eslint-disable-next-line i18next/no-literal-string
|
|
const mockHeaderBackButton = <View testID="ObsEdit.BackButton">Mocked Back</View>;
|
|
|
|
// Note: HeaderBackButton has accessibility issues
|
|
jest.mock( "@react-navigation/elements", () => ( {
|
|
...jest.requireActual( "@react-navigation/elements" ),
|
|
HeaderBackButton: jest.fn()
|
|
.mockImplementation( ( ) => mockHeaderBackButton ),
|
|
} ) );
|
|
|
|
describe( "BackButton", () => {
|
|
it( "has no accessibility errors", () => {
|
|
const button = wrapInNavigationContainer( <BackButton /> );
|
|
|
|
// Disabled during the update to RN 0.78
|
|
expect( button ).toBeTruthy();
|
|
// expect( button ).toBeAccessible();
|
|
} );
|
|
} );
|