如何从 mocha.opts 文件中正确地要求模块

How to properly require modules from mocha.opts file(如何从 mocha.opts 文件中正确地要求模块)
本文介绍了如何从 mocha.opts 文件中正确地要求模块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我在 mocha 单元测试中使用了 expect.js 库.目前,我需要在每个文件的第一行使用该库,如下所示:

I'm using the expect.js library with my mocha unit tests. Currently, I'm requiring the library on the first line of each file, like this:

var expect = require('expect.js');

describe('something', function () {
    it('should pass', function () {
        expect(true).to.be(true); // works
    });
});

如果可能,我想从每个文件的第一行删除样板要求代码,并让我的单元测试神奇地了解 expect.我想我可以使用 mocha.opts 文件来做到这一点:

If possible, I'd like to remove the boilerplate require code from the first line of each file, and have my unit tests magically know about expect. I thought I might be able to do this using the mocha.opts file:

--require ./node_modules/expect.js/index.js

但现在我在运行测试时收到以下错误:

But now I get the following error when running my test:

ReferenceError: 未定义期望

ReferenceError: expect is not defined

这似乎是有道理的——它怎么知道我的测试中对 expect 的引用指的是由 expect.js 库导出的内容?

This seems to make sense - how can it know that the reference to expect in my tests refers to what is exported by the expect.js library?

expect 库肯定会被加载,就好像我将路径更改为不存在的东西然后 mocha 说:

The expect library is definitely getting loaded, as if I change the path to something non-existent then mocha says:

错误:找不到模块'./does-not-exist.js'"

"Error: Cannot find module './does-not-exist.js'"

有什么方法可以完成我想要的吗?如果可能有帮助的话,我正在从一个 gulp 任务中运行我的测试.

Is there any way to accomplish what I want? I'm running my tests from a gulp task if perhaps that could help.

推荐答案

您正确地需要模块,但正如您所发现的,模块导出的符号不会自动找到自己进入全局空间.您可以使用自己的帮助模块来解决此问题.

You are requiring the module properly but as you figured out, the symbols that the module export won't automatically find themselves into the global space. You can remedy this with your own helper module.

创建test/helper.js:

var expect = require("expect.js")

global.expect = expect;

并将您的 test/mocha.opts 设置为:

--require test/helper

这篇关于如何从 mocha.opts 文件中正确地要求模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

在开发JS过程中,会经常遇到两个小数相运算的情况,但是运算结果却与预期不同,调试一下发现计算结果竟然有那么长一串尾巴。如下图所示: 产生原因: JavaScript对小数运算会先转成二进制,运算完毕再转回十进制,过程中会有丢失,不过不是所有的小数间运算会
问题描述: 在javascript中引用js代码,然后导致反斜杠丢失,发现字符串中的所有\信息丢失。比如在js中引用input type=text onkeyup=value=value.replace(/[^\d]/g,) ,结果导致正则表达式中的\丢失。 问题原因: 该字符串含有\,javascript对字符串进行了转
Rails/Javascript: How to inject rails variables into (very) simple javascript(Rails/Javascript:如何将 rails 变量注入(非常)简单的 javascript)
CoffeeScript always returns in anonymous function(CoffeeScript 总是以匿名函数返回)
Ordinals in words javascript(javascript中的序数)
getFullYear returns year before on first day of year(getFullYear 在一年的第一天返回前一年)