问题描述
我试图用intellij编写一个javascript测试,为此我需要导入一些依赖关系,并且我想使用ES6样式的导入语句,但是会出错
到底是什么问题?我找到了此链接(和其他链接)
另请参见 https://dev.to/bnorbertjs/my-nodejs-setup-mocha--chai-babel7-es6-43ei
I am trying to write a javascript test in intellij for which I need to import some dependancies and I want to use ES6 style import statements but getting error
What exactly is the issue? I found this link (and others) http://xahlee.info/js/js_import_export.html which tells you how to fix this error but in another context which doesn't help me, and it doesn't explain what the problem is.
In case it is helpful here is the code I am using.
//const chai = require("chai");
import chai from 'chai'
const React = require("react");
const expect = chai.expect;
describe('how it works first-time test', () => {
it('checks equality', () => {
const val = false;
expect(val).to.be.false;
});
});
The easiest way to run Mocha tests written in ES6 is compiling them on-the-fly using Mocha --require @babel/register
option (see https://github.com/mochajs/mocha/wiki/compilers-deprecation#what-should-i-use-instead-then). Of course, you need to make sure to install the corresponding modules and set up the .babelrc
accordingly
package.json:
"dependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/register": "^7.7.4",
...
}
.babelrc:
{
"presets": [
[
"@babel/preset-env"
]
]
}
See also https://dev.to/bnorbertjs/my-nodejs-setup-mocha--chai-babel7-es6-43ei
这篇关于尝试ES6样式导入会给出“无法在模块外部使用import语句"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!