Files
react-native/Libraries/Components/Touchable/__tests__/TouchableWithoutFeedback-test.js
T
Tim Yung 494c47360f RN: Sort Imports via ESLint
Summary:
Applies the autofix from the newly introduced `lint/sort-imports` ESLint rule.

Changelog:
[Internal]

Reviewed By: cortinico, skinsshark

Differential Revision: D39907798

fbshipit-source-id: 17f5f11b08a5b4bb66286816b78eb26e07e829b8
2022-09-30 14:28:48 -07:00

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
* @oncall react_native
*/
'use strict';
import Text from '../../../Text/Text';
import View from '../../View/View';
import TouchableWithoutFeedback from '../TouchableWithoutFeedback';
import * as React from 'react';
import ReactTestRenderer from 'react-test-renderer';
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();
});
});