test-result

2.0.0 • Public • Published

test-result

A simple module to mark the result of your tests

Build Status Dependency Status NPM version

Installation

npm install test-result

Usage

var result = require('test-result');
 
// if tests passed
result.pass('the best tests');
// if tests failed
result.fail('the worst tests');

On the server

It will log a message for test pass or fail. It will also process.exit(1) if the tests failed.

On the client

It will log a message for test pass or fail if the browser has console support. It will also count the number of completed, passed and failed tests in three counters, initialized as:

window.TESTS_COMPLETE = 0;
window.TESTS_PASSED = 0;
window.TESTS_FAILED = 0;

License

MIT

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.0.0
    108
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 2.0.0
    108
  • 1.0.1
    7
  • 1.0.0
    7

Package Sidebar

Install

npm i test-result

Weekly Downloads

83

Version

2.0.0

License

MIT

Last publish

Collaborators

  • forbeslindesay