diff --git a/app/integration_test/faq_test.dart b/app/integration_test/faq_test.dart index 3b20dd5e..3fcb5d14 100644 --- a/app/integration_test/faq_test.dart +++ b/app/integration_test/faq_test.dart @@ -38,6 +38,8 @@ void main() { await tester.pumpWidget(faqWidget); await tester.pumpAndSettle(); + final faqContent = getFaqContent(); + final expectedNumberOfQuestions = faqContent.fold( 0, (number, topic) => number + topic.questions.length );