@abelmokadem/tap-spec 中文文档教程

发布于 7年前 浏览 17 项目主页 更新于 3年前

tap-spec NPM versionNPM download count

格式化 TAP 输出,如 Mocha 的规范报告

iterm - 2 bash - 5 月 29 日2015 年 10 点 17 点屏幕截图

Install

npm install tap-spec --save-dev

Usage

Streaming

var test = require('tape');
var tapSpec = require('tap-spec');

test.createStream()
  .pipe(tapSpec({
    hideError: false // optional
  }))
  .pipe(process.stdout);

CLI

package.json

{
  "name": "module-name",
  "scripts": {
    "test": "node ./test/tap-test.js | tap-spec"
  }
}

然后运行 ​​npm test

Terminal

tape test/index.js | node_modules/.bin/tap-spec

Testling

npm install testling -g
testling test/index.js | node_modules/.bin/tap-spec

tap-spec NPM versionNPM download count

Formatted TAP output like Mocha's spec reporter

iterm - 2 bash - may 29 2015 at 10 17 am screen shot

Install

npm install tap-spec --save-dev

Usage

Streaming

var test = require('tape');
var tapSpec = require('tap-spec');

test.createStream()
  .pipe(tapSpec({
    hideError: false // optional
  }))
  .pipe(process.stdout);

CLI

package.json

{
  "name": "module-name",
  "scripts": {
    "test": "node ./test/tap-test.js | tap-spec"
  }
}

Then run with npm test

Terminal

tape test/index.js | node_modules/.bin/tap-spec

Testling

npm install testling -g
testling test/index.js | node_modules/.bin/tap-spec
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文