TF-4368 Add verifying actual merged email IDs, not just count.

This commit is contained in:
dab246
2026-03-11 13:26:26 +07:00
committed by Dat H. Pham
parent bf1bab478c
commit 80c368be62
@@ -1322,6 +1322,14 @@ void main() {
equals(2),
reason: 'Should merge created emails from both pages',
);
final createdIds = result.emailChangeResponse?.created
?.map((e) => e.id?.id.value)
.toSet();
expect(
createdIds,
containsAll(['created1', 'created2']),
reason: 'Should contain both created emails from different pages',
);
},
);