包详细信息

tap-yaml-summary

cfware1.1kISC0.2.0

Output a summary in YAML format from a TAP stream

自述文件

tap-yaml-summary NPM Version

Output a summary in YAML format from a TAP stream

Target User

This produces intentionally bare bones summaries. The primary target is modules with stable testing. If you are looking for a pretty output look elsewhere.

Command-line usage

tap test/*.js | tap-yaml-summary

API

This module works as a transform stream

const Reporter = require('tap-yaml-summary');

fs.createReadStream('saved-test-output.tap')
  .pipe(new Reporter().on('error', () => process.exit(1)))
  .pipe(process.stdout);

The error event is emitted on completion if any assertion failed or a bailout occurred.

Attribution

This was based on tap-mocha-reporter.

更新日志

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

0.2.0 (2022-08-13)

⚠ BREAKING CHANGES

  • Require Node.js 14
  • Set package.json#exports

Features

0.1.0 (2020-01-06)

Features