Fix ineffective test assertion in updateSupportingItems test

Agent-Logs-Url: https://github.com/Safelite/DigitalConsumer.ISS/sessions/fb2f46f9-6e42-4502-8833-3d3cae89de85

Co-authored-by: katiekroell <100247286+katiekroell@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-03-27 17:31:42 +00:00
parent 5fc719849e
commit 2d00e6e1c1

View file

@ -2503,10 +2503,14 @@ describe('Store', () => {
store.updateSupportingItems(partsData); store.updateSupportingItems(partsData);
// Assert // Assert
expect.not.objectContaining({ expect(store.order.lineItems.supportingItems).not.toEqual(
partNumber: 'RECYCLE FEE', expect.arrayContaining([
partType: 'REPLACE FEE' expect.objectContaining({
}); partNumber: 'RECYCLE FEE',
partType: 'REPLACE FEE'
})
])
);
}); });
}); });
}); });