/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow strict-local * @format * @oncall react_native */ import {expectRendersMatchingSnapshot} from '../../../Utilities/ReactNativeTestTools'; import View from '../../View/View'; import Pressable from '../Pressable'; import * as React from 'react'; describe('', () => { it('should render as expected', () => { expectRendersMatchingSnapshot( 'Pressable', () => ( ), () => { jest.dontMock('../Pressable'); }, ); }); }); describe('', () => { it('should be disabled when disabled is true', () => { expectRendersMatchingSnapshot( 'Pressable', () => ( ), () => { jest.dontMock('../Pressable'); }, ); }); }); describe('', () => { it('should be disabled when disabled is true and accessibilityState is empty', () => { expectRendersMatchingSnapshot( 'Pressable', () => ( ), () => { jest.dontMock('../Pressable'); }, ); }); }); describe('', () => { it('should keep accessibilityState when disabled is true', () => { expectRendersMatchingSnapshot( 'Pressable', () => ( ), () => { jest.dontMock('../Pressable'); }, ); }); }); describe('', () => { it('should overwrite accessibilityState with value of disabled prop', () => { expectRendersMatchingSnapshot( 'Pressable', () => ( ), () => { jest.dontMock('../Pressable'); }, ); }); });