标签: javascript webpack jestjs
我想测试以下形式的代码:
if (module.hot) { // do some stuff }
让jest执行代码路径的最佳方法是什么?我看到了Test module.hot with Jest,但想避免修改非测试代码。
jest