Files
feather/src/__tests__/replace.node.test.js
2018-05-17 23:08:17 -07: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();
});