1.0.2 • Published 6 years ago

test-error v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

test-error

NPM version Build Status Coverage Status

This module provides a simple function that can be used in assert.throws to verify that an error is an instance of a particular class, and/or that its message has specific content.

Example

'use strict'

const assert = require('assert');
const testError = require('test-error');

// ...

describe('suite', function() {
  it('should throw a TypeError', function() {
    assert.throws(() => testMe(),
                  err => testError(err, TypeError, 'missing argument'));
  });
}); // suite

Installation

npm install test-error

Usage

testError(error, constructor, msgCheck)

  • error {Error} The error instance to be tested.
  • constructor {Function} Optional class of which error must be an instance. If not provided the parentage of error is not tested.
  • msgCheck {String|RegExp} Optional content expected in error.message. If a String is provided, the String must appear within error.message (at any position). If a RegExp is provided, its test method must accept error.message. If not provided the value of error.message is not tested.

Returns false if a provided constructor or msgCheck verification fails, true otherwise.

Change Log

All changes since 1.0.0 relate to package documentation.

1.0.2 - 2018-03-17

  • Correct documentation of behavior in the case where no verifications are provided.

1.0.1 - 2018-03-13

  • Add script to package.json so coveralls updates are performed.

1.0.0 - 2018-03-13

  • Initial release

License

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

0.0.0

6 years ago