1.0.1 • Published 8 years ago

assert-extends v1.0.1

Weekly downloads
285
License
MIT
Repository
github
Last release
8 years ago

assert-extends

NPM version build status Test coverage David deps Known Vulnerabilities npm download

power-assert module extends.

  • assert.asyncThrows(block[, error][, message])

Usage

  • Add mocha --require intelli-espower-loader to your test scripts.

assert throws with async function

  • API: assert.asyncThrows(block[, error][, message]), return a promise
it('should throw error', () => {
  return assert.asyncThrows(function* () {
    yield fs.readFile(filepath);
  }, /not exists/);
});

it('should throw error', function* () {
  yield assert.asyncThrows(function* () {
    yield fs.readFile(filepath);
  }, /not exists/);
});

it('should throw error', done => {
  assert.asyncThrows(function* () {
    yield fs.readFile(filepath);
  }, /not exists/).then(done).catch(done);
});

License

MIT

1.0.1

8 years ago

1.0.0

8 years ago