Commit dd5308eb authored by Mark Harding's avatar Mark Harding

(fix): failing spec tests

parent 1906416f
No related merge requests found
Pipeline #98897006 failed with stages
in 5 minutes and 40 seconds
......@@ -636,6 +636,7 @@ describe('WireCreatorComponent', () => {
payload: { receiver: '0x1234', address: '' },
payloadType: 'onchain',
recurring: false,
recurringInterval: 'monthly',
});
}));
......
......@@ -36,7 +36,7 @@ export interface WireStruc {
payloadType: PayloadType | null;
guid: any;
recurring: boolean;
recurringInterval: 'once' | 'monthly' | 'yearly' | null;
recurringInterval?: 'once' | 'monthly' | 'yearly' | null;
payload: any;
}
......
......@@ -59,6 +59,7 @@ describe('WireService', () => {
},
method: 'onchain',
recurring: false,
recurringInterval: 'monthly',
});
}));
......@@ -80,6 +81,7 @@ describe('WireService', () => {
payload: { address: 'offchain', method: 'offchain' },
method: 'offchain',
recurring: false,
recurringInterval: 'monthly',
});
}));
......@@ -105,6 +107,7 @@ describe('WireService', () => {
},
method: 'usd',
recurring: false,
recurringInterval: 'monthly',
});
}));
});
Please register or to comment