2

我正在尝试第一次设置 Mocha 和 Chai。但是,当我在命令行上键入“npm run test”时,我收到错误消息:“未指定测试”。在我的 package.json 文件中,我有:

"scripts": {
    "start": "node server.js",
    "test:":"mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive"

我的根目录中有一个包含两个文件的测试文件夹:

// test/testhelper.js

import chai from 'chai';
import chaiImmutable from'chai-immutable';

chai.use(chaiImmutable);

// 测试/不可变规范.js

import {expect} from 'chai';

describe('immutability', () => {

    describe('a number', () => {

        function increment(currentState){
            return currentState + 1;    
        }
        it('is immutable',() => {
            let state = 42;
            let nextState=increment(state);

            expect(nextState).to.equal(43);
            expect(state).to.equal(42);

        });
    });
});

我控制台上的确切消息是

react-hot-boilerplate@1.0.0 test c:\users\owner\react\voting (my root)
echo 'Error:not test specified'

看来我在 package.json 中的测试脚本中键入的任何内容都会被忽略,并且每次都会得到完全相同的错误消息。

4

1 回答 1

0

你还没有告诉 mocha 你的测试在哪里。您应该将其指向您的test文件夹:

mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive ./test
于 2016-07-21T12:20:53.237 回答