我正在使用jest来测试我的reactJS组件。在我的reactJS组件中,我需要使用jquery UI,所以我在组件中添加了以下内容:require('jquery-ui/ui/core但是,现在,我需要使用jest进行测试,但是当我将组件加载到testutils中时,我立即遇到了这个问题。Test suite failed to run如果你在
使用示例 import './logger'; // custom module: Global logger is initialized.(using winston)
log.info('This is custom global logger.'); // access to log variable globally.