- Run test in a separate isolate thread via
tst.fork('test', () => { ... }) - Data can be passed to individual test as
tst('test', { data: { ... } }, (assert, data) => { ... }) - Test receives assertions as argument
test('name', ({ is, ok, almost, ...}) => { ... }) - Test modifiers can be combined via options:
test('name', { fork: true, only: true }, t => {}) rejectsassert for promises
Full Changelog: v9.0.0...v9.2.0