尝试使用打字稿和纽约摩卡咖啡测试覆盖率setup a project。最终目标是能够在以下位置查看伊斯坦布尔测试覆盖率报告:
https://oleersoy.github.io/tsmochanyc/coverage/index.html
.travis.yml
文件如下所示:
language : node_js
node_js :
- stable
install:
- npm install
script:
- npm test
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
on:
branch: master
before_deploy:
- npm run test
- sed -i '/.nyc_output/d' .gitignore
- sed -i '/coverage/d' .gitignore
并且该构建在travis上运行并传递,但是coverage URL仍未呈现。有什么想法吗?