UNPKG

suitescript-mocks

Version:

Set of mocks for unit testing Netsuite Suitescript 2.*

25 lines (21 loc) 582 B
const { assignConstructor } = require("../../helpers.cjs"); @assignConstructor() class MapReduceScriptTaskStatus { deploymentId; scriptId; stage; status; taskId; getCurrentTotalSize = () => {}; getPendingMapCount = () => {}; getPendingMapSize = () => {}; getPendingOutputCount = () => {}; getPendingOutputSize = () => {}; getPendingReduceCount = () => {}; getPendingReduceSize = () => {}; getPercentageCompleted = () => {}; getTotalMapCount = () => {}; getTotalOutputCount = () => {}; getTotalReduceCount = () => {}; } module.exports = MapReduceScriptTaskStatus;