feat: Add hardened error handling and retries (#2451)

- Closes #1830
 - Closes #2099
This commit is contained in:
Dermot Duffy
2026-06-30 17:45:12 -07:00
committed by dermotduffy
parent 4bc787e2b7
commit 47bcce93d3
182 changed files with 7877 additions and 4043 deletions
+2 -2
View File
@@ -360,7 +360,7 @@ describe('createSetReviewAction', () => {
describe('createNotificationAction', () => {
it('should create notification action', () => {
const notification = { text: 'test' };
const notification = { body: { text: 'test' } };
expect(createNotificationAction(notification)).toEqual({
action: 'fire-dom-event',
advanced_camera_card_action: 'notification',
@@ -369,7 +369,7 @@ describe('createNotificationAction', () => {
});
it('should create notification action with cardID', () => {
const notification = { text: 'test' };
const notification = { body: { text: 'test' } };
expect(createNotificationAction(notification, { cardID: 'card_id' })).toEqual({
action: 'fire-dom-event',
advanced_camera_card_action: 'notification',