运行摩卡与巴贝尔es2015无法正常工作

时间:2015-11-07 18:53:48

标签: javascript ecmascript-6 babeljs transpiler

我努力让Babel 6为我工作。我非常成功地使用了5个日常工作(用于React开发),但是6似乎没有按照预期与Mocha集成。

我有这些devDependencies,脚本和babel配置:

{
  "devDependencies": {
    "babel-cli": "^6.1.2",
    "babel-core": "^6.1.2",
    "babel-preset-es2015": "^6.1.2",
    "mocha": "^2.3.3"
  },
  "scripts": {
    "test": "mocha --compilers js:babel-core/register ./tests --recursive"
  },
  "babel": {
    "presets": [
      "es2015"
    ]
  }
}

这是我的测试代码:

import ObjectBeingTested from '../src/object-being-tested';

describe('ObjectBeingTested', () => {
  it('does stuff', () => {
    const obj = new ObjectBeingTested({ foo: 0, bar: 1 });
    // ...
  });
});

...源代码有:

export default class ObjectBeingTested {
  constructor({ foo, bar}) {
    this.foo = foo;
    this.bar = bar;
  }
}

但是,在运行时,我在构造函数的第一行得到foo is not defined。有趣的是,如果我直接转换代码并直接通过节点CLI调用它,它就可以正常工作。这是babel-cli为文件生成的内容:

"use strict";

var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();

Object.defineProperty(exports, "__esModule", {
  value: true
});

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

var ObjectBeingTested = (function () {
  function ObjectBeingTested(_ref) {
    _classCallCheck(this, ObjectBeingTested);

    var foo = _ref.foo;
    var bar = _ref.bar;

    this.foo = foo;
    this.bar = bar;
  }

  _createClass(ObjectBeingTested, [/*...other defs */]);

  return ObjectBeingTested;
})();

exports.default = ObjectBeingTested;

如何正确运行mocha来转换测试&amp;他们进口的任何东西?

我尝试的事情:

  • 将babel配置转移到.babelrc文件中;没有区别。
  • 使用-r babel-core/register代替--compilers也不起作用。

更新

这很有趣。我决定在导入后做一个console.log(ObjectBeingTested.toString())看看摩卡正在做什么;这是它输出的内容:

function ObjectBeingTested(_ref) {
    _classCallCheck(this, ObjectBeingTested);

    this.foo = foo;
    this.bar = bar;
  }

请注意,两个解除引用线完全缺失。

更新2

这个问题与摩卡无关;我可以重现,导入的模块的编译方式与批量编译的模块不同。

1 个答案:

答案 0 :(得分:0)

我找到了解决方法。首先,我切换到节点5(从0.12开始),这样我就需要更少的转换插件来处理代码。我首先尝试了es2015-node5预设,但这仍然没有奏效。相反,我在.babelrc

中引入了这些特定的插件
{
  "plugins": [
    "transform-es2015-modules-commonjs",
    "transform-es2015-parameters",
    "transform-es2015-destructuring"
  ]
}

有了这些,我的构造函数终于正确地编译了。