Files
Ryan Stelly b78be9243d lint rule & autofix for "trailing comma" (#3299)
* (lint) MOB-1063 enforce trailing commas

* autofix trailing commas

* manually fix newly introduced maxlen violations

* add trailing comma convention to i18n build
2025-12-22 20:17:13 -06:00

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();
} );
} );