UNPKG

ns-suitescript-mocks

Version:

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

14 lines (12 loc) 283 B
const file = require('../N/file'); const log = require('../N/log'); module.exports = { createConnection: (option) => { log.debug(option); return { upload: uploadOption => uploadOption, download: downloadOption => file.create(downloadOption), }; } , };