我正在尝试在https://github.com/lelandrichardson/enzyme-example-mocha运行 Enzyme/Mocha 示例项目。我从 Github 克隆了项目并运行了npm install
. 当我在mocha
没有对项目进行任何其他更改的情况下运行时,这是我收到的输出:
/Projects/enzyme-example-mocha/test/Foo-test.js:1
(function (exports, require, module, __filename, __dirname) { import React from 'react';
^^^^^^
SyntaxError: Unexpected token import
at exports.runInThisContext (vm.js:53:16)
at Module._compile (module.js:511:25)
at Object.Module._extensions..js (module.js:550:10)
at Module.load (module.js:456:32)
at tryModuleLoad (module.js:415:12)
at Function.Module._load (module.js:407:3)
at Module.require (module.js:466:17)
at require (internal/module.js:20:19)
我node --version
的是v6.1.0
和我mocha --version
的是2.4.5
。
如何让这个项目转译成 Node/Mocha 可以运行的东西?谢谢。