UNPKG

ns-suitescript-mocks

Version:

Collection of mocks that can be used to improve unit-tests for SuiteScript 2.0.

17 lines (15 loc) 251 B
/** * Return a Netsuite Error Module * * @classDescription Error object * @constructor * @returns {N/Module} */ const error = { name: '', message: '', notifyOff: false, }; module.exports = { create: obj => Object.assign(error, obj), };