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