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

59 lines
1.3 KiB
JavaScript

import { render, screen } from "@testing-library/react-native";
import HideView from "components/SharedComponents/HideView";
import React, { useEffect } from "react";
import { Text } from "react-native";
const testFunc = jest.fn();
const TEST_TEXT = "Centipedes";
const TestComponent = () => {
useEffect( () => {
testFunc();
}, [] );
return <Text>{TEST_TEXT}</Text>;
};
describe( "HideView", () => {
afterEach( () => {
jest.clearAllMocks();
} );
test( "should show component correctly", () => {
render(
<HideView show>
<TestComponent />
</HideView>,
);
expect( testFunc ).toHaveBeenCalledTimes( 1 );
expect( screen.queryByText( TEST_TEXT ) ).toBeVisible();
} );
test( "should hide component correctly", () => {
render(
<HideView show={false}>
<TestComponent />
</HideView>,
);
expect( testFunc ).toHaveBeenCalledTimes( 1 );
expect(
screen.queryByText( TEST_TEXT, { includeHiddenElements: true } ),
).not.toBeVisible();
} );
test( "should not render hidden component", () => {
render(
<HideView show={false} noInitialRender>
<TestComponent />
</HideView>,
);
expect( testFunc ).not.toHaveBeenCalled();
expect( screen.queryByText( TEST_TEXT ) ).not.toBeTruthy();
} );
} );