将模块导入测试文件后,它将经历所有嵌套的导入并尝试导入它们。
例如,在FormItemsBuilded.test.js中
import FormItemsBuilder from './FormItemsBuilded';
它会遍历 FormItemsBuilded 中存在的所有依赖项。
其中一个文件中包含 flux 声明,这会引发错误。
TypeError:超级表达式必须为null或函数
此行import {Dispatcher} from 'flux';
flux -这是 node_modules
中的库我认为,从 node_module 导入有一些问题,但我不知道确切的含义。