Translations: Français
Useful for people wanting to fully embrace the power of power-assert.
const test = require('ava');
test(t => {
t.truthy(foo);
t.falsy(foo);
t.true(foo === bar);
t.false(foo === bar);
t.is(foo, bar);
t.not(foo, bar);
t.regex(foo, bar);
t.ifError(error);
});
const test = require('ava');
test(t => {
t.assert(foo === bar);
t.deepEqual(foo, bar);
t.notDeepEqual(foo, bar);
t.throws(foo);
t.notThrows(bar);
});