Files
lucide/packages/js/src/__tests__/replace.node.test.js
T
2020-08-19 20:03:38 +02:00

11 lines
207 B
JavaScript

/**
* @jest-environment node
*/
/* eslint-env jest */
import replace from '../replace';
test('throws an error when run in node environment', () => {
expect(replace).toThrowErrorMatchingSnapshot();
});