Skip to content

Commit

Permalink
Update reporting tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jughosta committed Jun 10, 2024
1 parent 9cbd9e9 commit b387173
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export default function ({ getService }: FtrProviderContext) {

it('includes all unmapped fields to the report', async () => {
const csvFile = await generateCsvReportWithUnmapped(['*']);
expect((csvFile as string).length).to.be(120);
expect((csvFile as string).length).to.be(139);
expectSnapshot(createPartialCsv(csvFile)).toMatch();
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export default function ({ getService }: FtrProviderContext) {

it('includes all unmapped fields to the report', async () => {
const csvFile = await generateCsvReportWithUnmapped(['*']);
expect((csvFile as string).length).to.be(124);
expect((csvFile as string).length).to.be(143);
expectSnapshot(createPartialCsv(csvFile)).toMatch();
});
});
Expand Down

0 comments on commit b387173

Please sign in to comment.