mirror of
https://github.com/foss42/apidash.git
synced 2025-08-06 13:51:20 +08:00
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:
@ -330,23 +330,4 @@ void main() {
|
|||||||
expect(isDisposed, true);
|
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);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user