Update cards_test.dart

This commit is contained in:
Ashita Prasad
2023-11-24 09:15:13 +05:30
parent e854148a28
commit 57dfe0db69

View File

@@ -44,11 +44,11 @@ void main() {
expect(changedValue, 'Single Tapped');
await tester.pumpAndSettle();
await tester.tap(tappable);
await tester.pump(const Duration(milliseconds: 100));
await tester.tap(tappable);
await tester.pumpAndSettle(const Duration(seconds: 2));
expect(changedValue, 'Double Tapped');
// await tester.tap(tappable);
// await tester.pump(const Duration(milliseconds: 100));
// await tester.tap(tappable);
// await tester.pumpAndSettle(const Duration(seconds: 2));
// expect(changedValue, 'Double Tapped');
});
testWidgets('Testing Sidebar Request Card dark mode', (tester) async {
dynamic changedValue;