mirror of
https://github.com/lingble/chatwoot.git
synced 2026-01-08 13:31:36 +00:00
chore: Add an option to download CSAT Reports (#4694)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { downloadCsvFile } from '../downloadCsvFile';
|
||||
import { downloadCsvFile, generateFileName } from '../downloadHelper';
|
||||
|
||||
const fileName = 'test.csv';
|
||||
const fileData = `Agent name,Conversations count,Avg first response time (Minutes),Avg resolution time (Minutes)
|
||||
@@ -19,3 +19,11 @@ describe('#downloadCsvFile', () => {
|
||||
expect(link.click).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
});
|
||||
|
||||
describe('#generateFileName', () => {
|
||||
it('should generate the correct file name', () => {
|
||||
expect(generateFileName({ type: 'csat', to: 1652812199 })).toEqual(
|
||||
'csat-report-17-05-2022.csv'
|
||||
);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user