简体   繁体   English

使用 JEST 和 Vue.js 失败“插件/预设文件不允许导出对象,只能导出函数。”

[英]Fail with JEST and Vue.js "Plugin/Preset files are not allowed to export objects, only functions."

Hello everyone!大家好!

i have a problem with jest.我有开玩笑的问题。 I want to test a view.js application with jest.我想用玩笑测试一个 view.js 应用程序。 The application is already well advanced.该应用程序已经非常先进。

I create a very simple test to understand the operation but it always returns me an error.我创建了一个非常简单的测试来理解操作,但它总是返回一个错误。

 FAIL  test/unit/specs/sum.test.js
 ● Test suite failed to run

  at createDescriptor (node_modules/@babel/core/lib/config/config-descriptors.js:178:11)
  at items.map (node_modules/@babel/core/lib/config/config-descriptors.js:109:50)
      at Array.map (<anonymous>)
  at createDescriptors (node_modules/@babel/core/lib/config/config-descriptors.js:109:29)
  at createPresetDescriptors (node_modules/@babel/core/lib/config/config-descriptors.js:101:10)
  at presets (node_modules/@babel/core/lib/config/config-descriptors.js:47:19)
  at mergeChainOpts (node_modules/@babel/core/lib/config/config-chain.js:320:26)
  at node_modules/@babel/core/lib/config/config-chain.js:283:7
  at buildRootChain (node_modules/@babel/core/lib/config/config-chain.js:120:22)
  at loadPrivatePartialConfig (node_modules/@babel/core/lib/config/partial.js:85:55)

Here is the state of my configuration:这是我的配置状态:

package.json包.json

The part scripts :部分scripts

"scripts": {
  "dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
  "start": "npm run dev",
  "unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
  "e2e": "node test/e2e/runner.js",
  "test": "jest",
  "lint": "eslint --ext .js,.vue src test/unit test/e2e/specs",
  "build": "node build/build.js"
}

The part Jest : Jest的部分:

"jest": {
  "moduleFileExtensions": [
    "js",
    "json",
    "vue"
  ],
  "transform": {
    ".*\\.(vue)$": "vue-jest",
    "^.+\\.js$": "<rootDir>/node_modules/babel-jest"
  },
  "moduleNameMapper": {
    "^@/(.*)$": "<rootDir>/src/$1"
  }
}

The part devDependencies :部分devDependencies

"devDependencies": {
  "@vue/test-utils": "^1.0.0-beta.29",
  "autoprefixer": "^7.1.2",
  "babel-core": "^6.22.1",
  "babel-eslint": "^8.2.1",
  "babel-helper-vue-jsx-merge-props": "^2.0.3",
  "babel-jest": "^24.1.0",
  "babel-loader": "^7.1.1",
  "babel-plugin-istanbul": "^4.1.1",
  "babel-plugin-syntax-jsx": "^6.18.0",
  "babel-plugin-transform-runtime": "^6.22.0",
  "babel-plugin-transform-vue-jsx": "^3.5.0",
  "babel-preset-env": "^1.3.2",
  "babel-preset-stage-2": "^6.22.0",
  "babel-register": "^6.22.0",
  "chai": "^4.1.2",
  "chalk": "^2.0.1",
  "chromedriver": "^2.27.2",
  "copy-webpack-plugin": "^4.0.1",
  "cross-env": "^5.0.1",
  "cross-spawn": "^5.0.1",
  "css-loader": "^0.28.11",
  "eslint": "^4.15.0",
  "eslint-config-standard": "^10.2.1",
  "eslint-friendly-formatter": "^3.0.0",
  "eslint-loader": "^1.7.1",
  "eslint-plugin-import": "^2.7.0",
  "eslint-plugin-node": "^5.2.0",
  "eslint-plugin-promise": "^3.4.0",
  "eslint-plugin-standard": "^3.0.1",
  "eslint-plugin-vue": "^4.0.0",
  "extract-text-webpack-plugin": "^3.0.0",
  "file-loader": "^1.1.4",
  "friendly-errors-webpack-plugin": "^1.6.1",
  "html-webpack-plugin": "^2.30.1",
  "inject-loader": "^3.0.0",
  "jest": "^24.1.0",
  "karma": "^1.4.1",
  "karma-coverage": "^1.1.1",
  "karma-mocha": "^1.3.0",
  "karma-phantomjs-launcher": "^1.0.2",
  "karma-phantomjs-shim": "^1.4.0",
  "karma-sinon-chai": "^1.3.1",
  "karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.2",
"mocha": "^3.2.0",
"nightwatch": "^0.9.12",
"node-notifier": "^5.1.2",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.2.0",
"phantomjs-prebuilt": "^2.1.14",
"portfinder": "^1.0.13",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-url": "^7.2.1",
"rimraf": "^2.6.0",
"selenium-server": "^3.0.1",
"semver": "^5.3.0",
"shelljs": "^0.7.6",
"sinon": "^4.0.0",
"sinon-chai": "^2.8.0",
"style-loader": "^0.20.3",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"uglifyjs-webpack-plugin": "^1.1.1",
"url-loader": "^0.5.8",
"vue-jest": "^3.0.3",
"vue-loader": "^13.3.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.5.2",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.0"

} } } }

The function to be tested要测试的功能

The file name sum.js文件名sum.js

export default function sum (a, b) {
  return a + b
}

File that must test the function必须测试函数的文件

The file sum.test.js文件sum.test.js

import sum from '../../../src/components/sum'

describe('sum', () => {
  it('create sum of 2 numbrers', () => {
    expect(sum(15, 8)).toBe(23)
  })
})

The file structure and the like this:文件结构之类的:

src
-components
--sum.js
test
-unit
--specs
---sum.test.js

Never had your problem so I don't know if this will help, but:从来没有遇到过你的问题,所以我不知道这是否有帮助,但是:

"^.+\\.js$": "<rootDir>/node_modules/babel-jest"

This line troubles me.这条线困扰着我。 If I install babel-jest locally in my node_modules, under node_modules/babel-jest/ there is a build folder with and index.js .如果我在 node_modules 中本地安装babel-jest ,则在node_modules/babel-jest/有一个build文件夹,其中包含index.js There is no executable file under node_modules/babel-jest . node_modules/babel-jest下没有可执行文件。 maybe that's the root of your problem.也许这就是你问题的根源。

I would try with:我会尝试:

"^.+\\.js$": "babel-jest" "^.+\\.js$": "babel-jest"

If that does not work, I would try:如果这不起作用,我会尝试:

"^.+\\.js$": "<rootDir>/node_modules/babel-jest/build"

Good luck!祝你好运!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 出现“错误:插件/预设文件不允许导出对象,只能导出功能。” 来自 babel-preset-react-app/index.js - Getting "Error: Plugin/Preset files are not allowed to export objects, only functions." from babel-preset-react-app/index.js 用graphql开玩笑,“插件/预设文件不允许导出对象,只能导出功能” - Jest with graphql, “Plugin/Preset files are not allowed to export objects, only functions” 错误:插件/预设文件不允许导出对象,只能导出功能。 ReactJS - Error: Plugin/Preset files are not allowed to export objects, only functions. ReactJS 反应错误:不允许插件/预设文件导出对象,仅导出功能 - error on react: Plugin/Preset files are not allowed to export objects, only functions Babel Plugin/Preset 文件不允许导出对象,只能导出函数 - Babel Plugin/Preset files are not allowed to export objects, only functions Babel错误:插件/预设文件不允许导出对象,仅可导出功能 - Babel Error: Plugin/Preset files are not allowed to export objects, only functions 错误:插件/预设文件不允许导出对象,只能导出功能/ babel-preset-stage-0 - Error:Plugin /Preset files are not allowed to export objects,only functions/babel-preset-stage-0 gulp-babel插件错误:不允许插件/预设文件导出对象,仅导出功能 - Error in plugin gulp-babel: Plugin/Preset files are not allowed to export objects, only functions Babel-Loader Error Plugin/Preset 文件不允许导出对象,只能导出函数 - Babel-Loader Error Plugin/Preset files are not allowed to export objects, only functions “ npm start”抛出错误:不允许插件/预设文件导出对象,仅导出功能 - “npm start” throws Error: Plugin/Preset files are not allowed to export objects, only functions
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM