react-three-d
Version:
A versatile React library designed to simplify the process of creating and manipulating 3D shapes using CSS.
10 lines • 335 B
JavaScript
import * as React from 'react';
import { render } from '@testing-library/react';
import 'jest-canvas-mock';
import { MyCounter } from '../';
describe('Common render', function () {
it('renders without crashing', function () {
render(React.createElement(MyCounter, null));
});
});
//# sourceMappingURL=common.test.js.map