
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
assertive-as-promised
Advanced tools
Assertive as Promised extends Assertive for asserting things about standards-compliant promises. It is 100% backward-compatible, so all of the existing assertive documentation applies.
As of assertive-2.1.0, this functionality has been rolled into
assertive itself. The only functional change is that you can no longer
pass functions-which-return-promises as arguments to resolves() and
rejects() - you should replace things like:
assert = require 'assertive-as-promised'
assert.rejects -> doSomething('blah')
with
assert = require 'assertive'
# this version will explode your test if there is a synchronous throw
# during the invocation of doSomething() (which may be a good thing -
# you can test for that behavior separately with assert.throws())
assert.rejects(doSomething('blah')).then (err) -> ...
# this version will turn any synchronous throw into a rejection which will
# be available as err
Promise = require 'bluebird'
assert.rejects(Promise.try -> doSomething('blah')).then (err) ->
This is best used with something like Mocha (version >= 1.18.0) which handles returned promises correctly. All of assertive's assertions are extended to accept promises as their argument to be tested and return a promise which will be resolved or rejected.
For all existing assertive functions, you may simply replace the
argument with a promise for an equivalent argument.
assert.equal('foo', funcThatReturnsAString()) becomes
assert.equal('foo', funcThatReturnsAPromiseForAString()). Note that you may
get nicer and more consistent errors if you put any function calls that may
have a risk of throwing an exception synchronously inside a bluebird
Promise.try(), thusly:
assert.equal('foo', Promise.try -> funcThatReturnsAPromiseForAString())
Note for throws() and notThrows() that they accept a function (which may
throw a synchronous exception) or a promise for a function (which
may throw a synchronous exception). The resolution status of the promise
itself is not being tested. Since you're often more interested in the
resolution status of the promise, there are two new functions:
rejects and resolves:
assert.rejects(-> funcThatReturnsAPromise(someArg)) takes as its
argument a promise OR a function that returns a promise. The equivalent
counterpart to notThrows is called resolves. rejects returns a promise
for the rejection error, and thus composes nicely with other assertions.
{ runSync, runAsync } = require './some-library'
assert = require 'assertive-as-promised'
Promise = require 'bluebird'
# runAsync returns a promise
it 'runs synchronously', ->
assert.deepEqual 'got proper hash', { a: 42 }, runSync('good')
it 'fails synchronously', ->
assert.throws 'fails on bad', -> runSync('bad')
it 'runs asynchronously', ->
assert.deepEqual 'got proper hash', { a: 42 }, runAsync('good')
it 'fails asynchronously', ->
assert.rejects 'fails on bad', -> runAsync('bad')
fn = -> Promise.try -> throw 'kaboom'
it 'fails asynchronously with the proper error', ->
assert.equal 'kaboom', assert.rejects fn
Note that if you want to be able to put more than one asynchronous test in a
single it(), you'll need to combine them somehow to make mocha-as-promised
happy, e.g.:
{ runAsync } = require './some-library'
assert = require 'assertive-as-promised'
Promise = require 'bluebird'
it 'runs and fails asynchronously', ->
Promise.all [
assert.deepEqual 'got proper hash', { a: 42 }, runAsync('good')
assert.rejects 'fails on bad', -> runAsync('bad')
]
(this may be bad style, depending on who you ask, but I find it useful if you
have it()s with a lot of setup overhead)
src/aap.coffee is the main library; it compiles to lib/aap.js.test/assertive_test.coffee is a copy of the assertive library tests, slightly modified to run correctly in our test environment (see comments at the top)FAQs
Extends assertive with promise support
We found that assertive-as-promised demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.