ui-neu
Version:
Neu UI, a responsive React component library.
22 lines • 743 B
JavaScript
import React from "react";
import { act } from "react-dom/test-utils";
import { render, unmountComponentAtNode } from "react-dom";
import { CardSubtitle } from "./CardSubtitle";
describe('CardSubtitle test suite', function () {
var container = null;
beforeEach(function () {
container = document.createElement('div');
document.body.appendChild(container);
});
afterEach(function () {
unmountComponentAtNode(container);
container.remove();
container = null;
});
it('renders Card Subtitle children props', function () {
act(function () {
render( /*#__PURE__*/React.createElement(CardSubtitle, null, "Subtitle Text"), container);
});
expect(container.textContent).toBe('Subtitle Text');
});
});