Remove test case for sentRequestIdStateProvider

I removed test case for this provider because this provider does not
exist in the repository anymore. With recent changes, it has been
removed.
This commit is contained in:
Sixtus Agbo
2024-03-21 01:31:55 +01:00
parent 5b3c98d86d
commit d2aee57ef1

View File

@ -330,23 +330,4 @@ void main() {
expect(isDisposed, true);
});
});
group("Testing sentRequestIdStateProvider", () {
testWidgets(
'sentRequestIdStateProvider should have an initial value of null',
(tester) async {
await tester.pumpWidget(
const ProviderScope(
child: MaterialApp(
home: CollectionPane(),
),
),
);
// Verify that the initial value is null
final collectionPane = tester.element(find.byType(CollectionPane));
final container = ProviderScope.containerOf(collectionPane);
expect(container.read(sentRequestIdStateProvider), null);
});
});
}