在我当前的工作项目中,以前的开发人员在站点中使用rappid.js制作流程图。这导致难以编写单元测试,因为我不知道如何测试这些外部库。我使用反应测试库编写了一个简单的测试,但返回此错误:
Jest encountered an unexpected token.
This usually means you are trying to import a file which Jest cannot parse.
然后在底部的错误日志中:
C:\Users\project\node-modules\rappid\index.ts:1
({"Object.<anonymous>":
function(module,exports,require,__dirname,__filename,global,jest) {
export * from './rappid';
}
});
所以我认为问题出在 rappid 库上。
有谁知道如何解决这个问题?谢谢!