UNPKG

node-qunit

Version:

QUnit testing framework for Node.js

7 lines (6 loc) 159 B
/* eslint-env es6 */ /* global thunk */ test('generators', function* (assert) { var data = yield thunk(); assert.deepEqual(data, {a: 1}, 'works'); });