{"ScriptPreparationCode":null,"TestCases":[{"Name":"Object.spread","Code":"const a = {\r\n deliveredCount: 1,\r\n deliveryImpossibleCount: 0,\r\n failedCount: 0,\r\n submittedCount: 0,\r\n};\r\n\r\nconst b = {\r\n deliveredCount: 0,\r\n deliveryImpossibleCount: 0,\r\n failedCount: 0,\r\n processingCount: 0,\r\n submittedCount: 0,\r\n};\r\n\r\nconst c = {...b, ...a};","IsDeferred":false},{"Name":"comparison","Code":"const a = {\r\n deliveredCount: 0,\r\n deliveryImpossibleCount: 0,\r\n failedCount: 0,\r\n submittedCount: 0,\r\n};\r\n\r\nconst b = {\r\n deliveredCount: 0,\r\n deliveryImpossibleCount: 0,\r\n failedCount: 0,\r\n processingCount: 0,\r\n submittedCount: 0,\r\n};\r\n\r\n\r\n const aKeys = Object.keys(a).sort();\r\n const bKeys = Object.keys(b).sort();\r\n const c = JSON.stringify(aKeys) === JSON.stringify(bKeys);\r\n\r\n\r\n\r\n","IsDeferred":false}]}