chai版本问题
环境
根目录.mocharc.json
1 | { |
根目录package.json
部分
1 | { |
复现
运行npm run test
报错
1 | Exception during run: TypeError [ERR_UNKNOWN_FILE_EXTENSION]: Unknown file extension ".ts" for ...................... |
解决
chai当前5.x版本仅支持纯ESM,而当前项目type为commonjs,安装char的4.x版本即可
1 | npm uninstall @types/chai chai |
相关链接
v5 - Unknown file extension ".ts"
when running with mocha · Issue #1568 · chaijs/chai (github.com)