mirror of
https://github.com/feathericons/feather.git
synced 2023-08-10 21:13:24 +03:00
11 lines
207 B
JavaScript
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();
|
|
});
|