mirror of
https://github.com/whekin/household-bot.git
synced 2026-04-01 00:14:03 +00:00
feat(bot): localize household flows and finance replies
This commit is contained in:
@@ -176,6 +176,23 @@ describe('buildPurchaseAcknowledgement', () => {
|
||||
})
|
||||
).toBeNull()
|
||||
})
|
||||
|
||||
test('returns Russian acknowledgement when requested', () => {
|
||||
const result = buildPurchaseAcknowledgement(
|
||||
{
|
||||
status: 'created',
|
||||
processingStatus: 'parsed',
|
||||
parsedAmountMinor: 3000n,
|
||||
parsedCurrency: 'GEL',
|
||||
parsedItemDescription: 'туалетная бумага',
|
||||
parserConfidence: 92,
|
||||
parserMode: 'rules'
|
||||
},
|
||||
'ru'
|
||||
)
|
||||
|
||||
expect(result).toBe('Покупка сохранена: туалетная бумага - 30.00 GEL')
|
||||
})
|
||||
})
|
||||
|
||||
describe('registerPurchaseTopicIngestion', () => {
|
||||
|
||||
Reference in New Issue
Block a user