UNPKG

specify-dsl-bdd

Version:

BDD EDSL for the Specify framework.

12 lines 342 B
/** * BDD EDSL for the Specify framework. * * @module specify-dsl-bdd/lib/index */ var curry = require('core.lambda').curry; var makeInterface = curry(2, require('./core')); var bdd = makeInterface('future'); bdd.promise = makeInterface('promise'); bdd.node = makeInterface('node'); module.exports = bdd; //# sourceMappingURL=index.js.map