我试图测试以下功能:
export async function loadLocale(language) {
return await import(`./locales/${language}.json`)
}
使用以下代码:
import * as utils from '@/langs/utils'
describe('language utils to interact with vue-i18n', () => {
it('should load a given locale from file', async () => {
const language = 'es'
expect.assertions(1)
const locale = await utils.loadLocale(language)
expect(locale).toEqual({ foo: 'bar' })
})
})
我已安装babel-plugin-dynamic-import-node,因为动态导入无法在Node中运行,必须替换为require。
这是我尝试加载es.json
的内容:
{
"foo": "bar"
}
我的.babelrc
配置如下:
{
"presets": [
"@vue/app"
],
"plugins": [
"syntax-dynamic-import"
],
"env": {
"test": {
"plugins": ["dynamic-import-node"]
}
}
}
这是我的文件夹结构:
│ ├── langs
│ │ ├── i18n.js
│ │ ├── locales # Actual locales
│ │ │ ├── en.json
│ │ │ └── es.json
│ │ └── utils.js
├── tests
│ └── unit
│ ├── langs
│ │ ├── locales # Mocked locales
│ │ │ ├── en.json
│ │ │ └── es.json
│ │ └── utils.spec.js
当我使用vue-cli提供的配置时,我尝试使用--no-cache
标记this answer mentions运行Jest。
我得到的错误如下:
Cannot find module 'function () {
return require("./locales/".concat(language, ".json"));
}' from 'utils.js'
11 | }
12 |
> 13 | export async function loadLocale(language) {
14 | return await import(`./locales/${language}.json`)
15 | }
16 |
at Resolver.resolveModule (node_modules/jest-resolve/build/index.js:169:17)
at src/langs/utils.js:13:8
哪个没有意义,因为./locales/es.json
存在!此外,我尝试使用与测试完全相同的路线,并正确加载其内容。
有什么想法吗?
答案 0 :(得分:0)
您两次使用dynamic-import-node
插件。我对
"presets": [
"react-app",
],