diff --git a/server/job/utils/seralizeHelper.js b/server/job/utils/seralizeHelper.js index 3d7aae03c..d526af30f 100644 --- a/server/job/utils/seralizeHelper.js +++ b/server/job/utils/seralizeHelper.js @@ -10,7 +10,6 @@ const fixtureDir = path.join(__dirname, "..", "test", "fixtures", "job-totals"); * @returns {*} */ const serializeDinero = (key, value) => { - // If the value has a toObject method (as in Dinero instances), use it. if (value && typeof value === "object" && typeof value.toObject === "function") { return value.toObject(); } @@ -28,7 +27,6 @@ const captureFixture = (inputData, outputData, environment) => { fs.mkdirSync(fixtureDir, { recursive: true }); } - // Use job.id to label the file. const fileName = `${inputData.id}.json`; const filePath = path.join(fixtureDir, fileName);