feat(description): concat bank with tickets #763
|
@ -27,6 +27,7 @@ describe('Client', () => {
|
||||||
|
|
||||||
describe('bankSelection() setter', () => {
|
describe('bankSelection() setter', () => {
|
||||||
it('should set the receipt description property', () => {
|
it('should set the receipt description property', () => {
|
||||||
|
controller.originalDescription = 'Albaran: 1, 2';
|
||||||
controller.bankSelection = {
|
controller.bankSelection = {
|
||||||
id: 1,
|
id: 1,
|
||||||
bank: 'Cash',
|
bank: 'Cash',
|
||||||
|
@ -36,7 +37,7 @@ describe('Client', () => {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
expect(controller.receipt.description).toContain('Cash');
|
expect(controller.receipt.description).toEqual('Cash, Albaran: 1, 2');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue