/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/Libraries/Components/Pressable/__tests__/Pressable-test.js
94 строки
2 KB
Tim Yung
RN: Delete `@oncall` Annotations (#51416)
18 май 2025, 02:18
18 май 2025, 02:18
84de8a0
Код
Авторство
О чём код?
/** * 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 */ import {expectRendersMatchingSnapshot} from '../../../Utilities/ReactNativeTestTools'; import View from '../../View/View'; import Pressable from '../Pressable'; import * as React from 'react'; describe('<Pressable />', () => { it('should render as expected', async () => { await expectRendersMatchingSnapshot( 'Pressable', () => ( <Pressable> <View /> </Pressable> ), () => { jest.dontMock('../Pressable'); }, ); }); }); describe('<Pressable disabled={true} />', () => { it('should be disabled when disabled is true', async () => { await expectRendersMatchingSnapshot( 'Pressable', () => ( <Pressable disabled={true}> <View /> </Pressable> ), () => { jest.dontMock('../Pressable'); }, ); }); }); describe('<Pressable disabled={true} accessibilityState={{}} />', () => { it('should be disabled when disabled is true and accessibilityState is empty', async () => { await expectRendersMatchingSnapshot( 'Pressable', () => ( <Pressable disabled={true} accessibilityState={{}}> <View /> </Pressable> ), () => { jest.dontMock('../Pressable'); }, ); }); }); describe('<Pressable disabled={true} accessibilityState={{checked: true}} />', () => { it('should keep accessibilityState when disabled is true', async () => { await expectRendersMatchingSnapshot( 'Pressable', () => ( <Pressable disabled={true} accessibilityState={{checked: true}}> <View /> </Pressable> ), () => { jest.dontMock('../Pressable'); }, ); }); }); describe('<Pressable disabled={true} accessibilityState={{disabled: false}} />', () => { it('should overwrite accessibilityState with value of disabled prop', async () => { await expectRendersMatchingSnapshot( 'Pressable', () => ( <Pressable disabled={true} accessibilityState={{disabled: false}}> <View /> </Pressable> ), () => { jest.dontMock('../Pressable'); }, ); }); });