typescript - 使用 'csv-parse/sync' 库后 Jest 测试失败

标签 typescript jestjs nestjs monorepo node-csv-parse

我将 NestJs 与 Nx.dev 一起用于 monorepo。在我安装了 csv-parse/sync 并使用了 Jest 测试之后,它就不再工作了。

Jest encountered an unexpected token

Jest failed to parse a file. This happens e.g. when your code or its dependencies use non-standard JavaScript syntax, or when Jest is not configured to support such syntax.

Out of the box Jest supports Babel, which will be used to transform your files into valid JS based on your Babel configuration.

By default "node_modules" folder is ignored by transformers.

Here's what you can do:
 • If you are trying to use ECMAScript Modules, see https://jestjs.io/docs/ecmascript-modules for how to enable it.
 • If you are trying to use TypeScript, see https://jestjs.io/docs/getting-started#using-typescript
 • To have some of your "node_modules" files transformed, you can specify a custom "transformIgnorePatterns" in your config.
 • If you need a custom transformation specify a "transform" option in your config.
 • If you simply want to mock your non-JS modules (e.g. binary assets) you can stub them out with the "moduleNameMapper" config option.
Details:

    /home/username/project/node_modules/csv-parse/lib/sync.js:2
    import { Parser } from './index.js';

我尝试点击上面的链接,但没有成功。有人遇到同样的问题吗?

最佳答案

向 package.json 添加行

    "moduleNameMapper": {
      "^csv-parse/sync": "<rootDir>/node_modules/csv-parse/dist/cjs/sync.cjs"
    }

关于typescript - 使用 'csv-parse/sync' 库后 Jest 测试失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70757593/

相关文章:

node.js - 使用 NestJS 在 OPTIONS 上找不到 404

javascript - Jest 配置

node.js - 如何在 Jest 中模拟链式函数?

node.js - Nestjs-i18n 翻译 Handlebars 模板不起作用

javascript - 识别和打印对象中的对象 - Angular

typescript - 在 typescript 中访问没有 "this"关键字的类型属性

javascript - typeof window == "undefined"在使用 ts-node 时抛出错误

node.js - 处理程序未定义或未导出

javascript - Jest 基础 : Testing function from component

node.js - sequelize-typescript - 当使用带有 `tsc` 编译器(带有 NestJS)的 glob 配置时,无法解析模型模块