6

我在让工作服工作时遇到问题。我在这里创建了一个简单的项目。

它似乎正确地输出了报告,但我肯定在某处错过了一步,因为工作服没有看到我被设置好了。没有分支出现,它只是给出了如何设置它的说明。我试图复制 qunit 正在做的事情,因为他们显然可以正常工作。

这是我到目前为止所做的。

创建了使用 node/grunt/qunit 以及工作服帐户的项目并打开了项目。然后我用这个替换了部分中的qunit参考。devDependenciespackage.json

"grunt-coveralls": "0.3.0",
"grunt-qunit-istanbul": "^0.4.0"

我已将此添加到我的package.json.

"scripts": {
    "ci": "grunt && grunt coveralls"
}

我已经qunit在我的Gruntfile.js.

options: {
    timeout: 30000,
    "--web-security": "no",
    coverage: {
        src: [ "src/<%= pkg.name %>.js" ],
        instrumentedFiles: "temp/",
        coberturaReport: "report/",
        htmlReport: "build/report/coverage",
        lcovReport: "build/report/lcov",
        linesThresholdPct: 70
    }
},

然后我将此添加到我的.travis.yml.

language: node_js

node_js:
    - "0.10"
before_install: 
    npm install -g grunt-cli
install: 
    npm install
before_script: 
    grunt
after_script:
    npm run-script coveralls
4

1 回答 1

4

我得到它的工作,检查回购的例子https://github.com/thorst/Code-Coverage-Qunit

虽然它并不总是可能的,但我发现茉莉花在多种方面更容易。我在这里有一个完整的例子:https ://github.com/thorst/Code-Coverage-Jasmine

不过,我还没有让摩卡咖啡起作用。那个(破碎的)回购在这里:https ://github.com/thorst/Code-Coverage-Mocha

于 2014-03-20T00:49:38.633 回答