mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
8bd3edec88
Reviewed By: aaronabramov Differential Revision: D33367752 fbshipit-source-id: 4ce94d184485e5ee0a62cf67ad2d3ba16e285c8f
92 lines
2.4 KiB
JavaScript
92 lines
2.4 KiB
JavaScript
/**
|
|
* 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.
|
|
*
|
|
* @format
|
|
* @emails oncall+react_native
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import * as React from 'react';
|
|
import ReactTestRenderer from 'react-test-renderer';
|
|
import Text from '../../../Text/Text';
|
|
import View from '../../View/View';
|
|
import TouchableWithoutFeedback from '../TouchableWithoutFeedback';
|
|
|
|
describe('TouchableWithoutFeedback', () => {
|
|
it('renders correctly', () => {
|
|
const instance = ReactTestRenderer.create(
|
|
<TouchableWithoutFeedback style={{}}>
|
|
<Text>Touchable</Text>
|
|
</TouchableWithoutFeedback>,
|
|
);
|
|
|
|
expect(instance.toJSON()).toMatchSnapshot();
|
|
});
|
|
|
|
it('has displayName', () => {
|
|
expect(TouchableWithoutFeedback.displayName).toEqual(
|
|
'TouchableWithoutFeedback',
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('TouchableWithoutFeedback with disabled state', () => {
|
|
it('should be disabled when disabled is true', () => {
|
|
expect(
|
|
ReactTestRenderer.create(
|
|
<TouchableWithoutFeedback disabled={true}>
|
|
<View />
|
|
</TouchableWithoutFeedback>,
|
|
),
|
|
).toMatchSnapshot();
|
|
});
|
|
|
|
it('should be disabled when disabled is true and accessibilityState is empty', () => {
|
|
expect(
|
|
ReactTestRenderer.create(
|
|
<TouchableWithoutFeedback disabled={true} accessibilityState={{}}>
|
|
<View />
|
|
</TouchableWithoutFeedback>,
|
|
),
|
|
).toMatchSnapshot();
|
|
});
|
|
|
|
it('should keep accessibilityState when disabled is true', () => {
|
|
expect(
|
|
ReactTestRenderer.create(
|
|
<TouchableWithoutFeedback
|
|
disabled={true}
|
|
accessibilityState={{checked: true}}>
|
|
<View />
|
|
</TouchableWithoutFeedback>,
|
|
),
|
|
).toMatchSnapshot();
|
|
});
|
|
|
|
it('should overwrite accessibilityState with value of disabled prop', () => {
|
|
expect(
|
|
ReactTestRenderer.create(
|
|
<TouchableWithoutFeedback
|
|
disabled={true}
|
|
accessibilityState={{disabled: false}}>
|
|
<View />
|
|
</TouchableWithoutFeedback>,
|
|
),
|
|
).toMatchSnapshot();
|
|
});
|
|
|
|
it('should disable button when accessibilityState is disabled', () => {
|
|
expect(
|
|
ReactTestRenderer.create(
|
|
<TouchableWithoutFeedback accessibilityState={{disabled: true}}>
|
|
<View />
|
|
</TouchableWithoutFeedback>,
|
|
),
|
|
).toMatchSnapshot();
|
|
});
|
|
});
|