8

Is there a way to make Mocha run tests in strict mode when running on node?

Normally you can enable this in node by running node --use_strict. Is there a way to do the same thing for mocha?

4

3 回答 3

10

添加--use_strict到 mocha 命令。

所以你的命令可能看起来像这样:

mocha ./test --recursive --use_strict
于 2016-10-05T12:36:56.633 回答
0

没有办法将 --use_strict 传递给 mocha,这是故意的。阅读讨论以获取详细信息。

如果你真的想要这种行为,你可以 fork mocha 的源代码或加载这个npm 模块作为测试中的第一件事。

于 2015-11-11T13:05:45.980 回答
-7

我只是开始测试脚本 'use strict';

于 2013-05-23T10:13:32.483 回答