Mocha测试无法访问全局变量

时间:2016-01-11 17:10:00

标签: javascript reactjs mocha chai redux

我收到一个ReferenceError:未定义NC_SETTINGS。

"use strict";


import forOwn from 'lodash/object/forOwn';
import { assert, expect, should } from 'chai';
import { spy } from 'sinon';
import { applyMiddleware } from 'redux';
import configureMockStore from 'redux-mock-store';
import thunk from 'redux-thunk';
import {
    REQUEST_ADD_PASSWORD_RESET_REQUEST,
    REQUEST_ADD_PASSWORD_RESET_REQUEST_SUCCESS,
    REQUEST_ADD_PASSWORD_RESET_REQUEST_FAILURE
} from 'actions/types';
import nock from 'nock';
import Actions from 'actions';
import fetch from 'isomorphic-fetch';

const middlewares = [ thunk ];
const mockStore = configureMockStore(middlewares);

var NC_SETTINGS = require('/home/tai/Gravitate/nc-app/taimoor/settings').NC_SETTINGS;
describe('forgot password async actions', () => {
    afterEach(()=> {
        nock.cleanAll();
    });

    //mockActions();
    //console.log(Actions.addPasswordResetRequest().addPasswordResetRequestAPI());
    it('should show a request for a password reset and that it succeeded ', (done) => {

        console.log(NC_SETTINGS);
        nock('http://localhost:8080/')
        .post('/password-reset-requests')
        .reply(200);
        var email = "test@email.com";
        const expectedActions= [
            {type: REQUEST_ADD_PASSWORD_RESET_REQUEST},
            {type: REQUEST_ADD_PASSWORD_RESET_REQUEST_SUCCESS}
        ];
        const store = mockStore({}, expectedActions, done);
        store.dispatch(Actions.addPasswordResetRequest());
        //unMockActions();
        //
        //console.log(actions);
        //expect(actions.addPasswordResetRequest("email")).to.equal(expectedAction);

  });

});

所以当我在console.log NC_SETTINGS时,确实显示了。但是,当我运行store.dispatch(Actions.addPasswordResetRequest)时,我得到的NC_SETTINGS没有定义。我之所以认为导入NC_SETTINGS可能有用,是因为它适用于导入同构提取,我遇到了类似的问题。

有没有办法将全局变量导入MochaJs,以便我的操作可以访问NC_SETTINGS?

我应该提到store.dispatch(Actions.addPasswordResetRequest())链接到一个动作文件,该文件将调度到js文件中的api调用。最后的js文件是NC_SETTINGS所在的位置,以及调用错误的位置。在浏览器中,这很好用。

有没有办法获得全局变量列表并在Mocha中测试时添加它们?

1 个答案:

答案 0 :(得分:0)

不要这样做,但你可以使用:

global.NC_SETTINGS = ...

将其设置为nodejs全局变量。这应该在Actions中找到。

然而,由于许多原因,全局变量是您想要避免的。相反,您可能想要进行某种依赖注入。两种可能性是:

  1. Actions实现为一个类,并在将NC_SETTINGS作为构造参数传递时将其实例化。
  2. 使用rewire模块。在这种情况下,NC_SETTINGS可能是Actions模块中的顶级变量,但不是全局变量。