@cainiaofe/cn-ui-m
Version:
11 lines (10 loc) • 397 B
JavaScript
// CnBox组件的单元测试
import React from 'react';
import { render } from '@testing-library/react';
import { CnBox } from '../index';
describe('CnBox组件检查', function () {
test('renders CnBox with children correctly', function () {
var getByText = render(React.createElement(CnBox, null, "123")).getByText;
expect(getByText('123')).toBeInTheDocument();
});
});