assert-exception

2.0.0 • Public • Published

Assert-exception

Npm version Build Status

Installation

$ yarn add -D assert-exception
# or 
$ npm install assert-exception --save-dev

Usage

without assert-exception

import assert from 'power-assert';
 
assert.throws(
  () => {
    throw new Error('foo');
  },
  (error) => {
    assert(error.message === 'foo');
    return true; // requirement :(
  }
); // pass

with assert-exception

import assert from 'power-assert';
import { throws } from 'assert-exception';
 
assert(throws(
  () => {throw new Error('foo');},
).message === 'foo'); // pass

if doesn't become the exception, it returns an empty object.

import assert from 'power-assert';
import { throws } from 'assert-exception';
 
assert(throws(
  () => {},
).message === 'foo'); // fail
//
// AssertionError:   # foo.js:4
//
//   assert(throws(() => {}).message === 'foo')
//          |                |       |
//          |                |       false
//          Object{}         undefined
//

API

throws(exception) -> Error or {}

run the exception, and returns the error. if not returned error, it returns an empty object.

import assert from 'power-assert';
import { throws } from 'assert-exception';
 
assert(throws(
  () => {},
).message === undefined); // pass
 
assert(throws(
  () => {throw new Error('foo');}
).message === undefined); // fail

rejects(promise) -> Promise(reason)

return the rejected reason unless fulfill.

import 'babel-polyfill';
import assert from 'power-assert';
import { rejects } from 'assert-exception';
 
it('rejects', async () => {
  assert((await rejects(Promise.reject(new Error('foo')))).message === 'foo'); // pass
  assert((await rejects(Promise.resolve(new Error('foo')))).message === 'foo'); // fail
});

Development

Requirement global

  • NodeJS v10.6.0
  • Yarn v1.8.0
git clone https://github.com/59naga/assert-exception
cd assert-exception
yarn
 
yarn test

License

MIT

Package Sidebar

Install

npm i assert-exception

Weekly Downloads

9

Version

2.0.0

License

MIT

Unpacked Size

6.49 kB

Total Files

5

Last publish

Collaborators

  • 59naga