UNPKG

@cainiaofe/cn-ui-m

Version:
11 lines (10 loc) 525 B
// CnCurrencySelect组件的单元测试 import React from 'react'; import { render } from '@testing-library/react'; import { CnCurrencySelect } from '../index'; describe('CnCurrencySelect组件检查', function () { test('renders CnCurrencySelect with children correctly', function () { var container = render(React.createElement(CnCurrencySelect, { defaultValue: "USD", readOnly: true })).container; expect(container.querySelector('.cn-ui-m-currency-select-selection')).toBeInTheDocument(); }); });