UNPKG

ns-suitescript-mocks

Version:

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

17 lines (15 loc) 283 B
/** * Return a Netsuite task module * * @returns {N/Module} */ module.exports = { checkStatus: () => 'PENDING', create: () => ({ submit: () => random(1, 100).toString(), }), TaskType: { SCHEDULED_SCRIPT: 'SCHEDULED_SCRIPT', MAP_REDUCE: 'MAP_REDUCE', }, };