2.0.0 • Published 6 years ago

assert-exception v2.0.0

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

Assert-exception

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

2.0.0

6 years ago

1.1.0

8 years ago

1.0.0

8 years ago

0.0.0

8 years ago