File size: 253 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
/**
* @jest-environment node
*/
// test that import does not crash
import * as ReactTransitionGroup from '../src'; // eslint-disable-line no-unused-vars
describe('SSR', () => {
it('should import react-transition-group in node env', () => {});
});
|