带有node-jscoverage,mocha和express的功能测试覆盖率报告

时间:2014-05-08 13:18:27

标签: javascript node.js express code-coverage mocha

我希望在快速端点上获得功能测试的覆盖范围。 我做了这个简单的设置。

nodetest / index.js

module.exports = process.env.APP_COV
  ? require('./lib-cov')
  : require('./lib');

nodetest / LIB / index.js

var express = require('express');
var app = express();
app.get('/hello.txt', function(req, res){
  res.send('Hello World');
});
var server = app.listen(3000, function() {
    console.log('Listening on port %d', server.address().port);
});

nodetest /测试/ simple.js

var request = require('supertest');

describe("Node Test Service",function(){
    it('Should return 200 OK trying to login', function (done) {
        request("http://localhost:3000")
            .get('/hello.txt')
            .expect(200)
            .end(function (err, res) {
            if(err)
                throw err;
            done();
            });
    });
});

nodetest /生成文件

all: test test-cov
test:
    @./node_modules/.bin/mocha -R xunit > reporter.xml

test-cov: lib-cov
    @APP_COV=1  ./node_modules/.bin/mocha -R html-cov > coverage.html

lib-cov:
    @./node-jscoverage/jscoverage lib lib-cov

node-jscoverage:
    @git clone git://github.com/visionmedia/node-jscoverage.git
    @cd node-jscoverage/ && ./configure && make


.PHONY: test

我正在运行带有env变量的服务器,然后触发测试 它会产生一个空的coverage.html。 是否有可能获得我要求的报道?

1 个答案:

答案 0 :(得分:0)

我发现为了工作,我必须从测试中启动快速服务器。 我还需要在测试之上添加一行

var lib = process.env['COV']?'../lib-cov' : '../lib';
//run express
var app = require(lib)

以便在运行coverage测试时包含已检测的文件。