UNPKG

ava

Version:

Testing can be a drag. AVA helps you get it done.

18 lines (14 loc) 278 B
'use strict'; let options = null; exports.get = () => { if (!options) { throw new Error('Options have not yet been set'); } return options; }; exports.set = newOptions => { if (options) { throw new Error('Options have already been set'); } options = newOptions; };