Merge branch 'foss42:main' into main

This commit is contained in:
Tilakraj-B
2024-03-25 14:32:02 +05:30
committed by GitHub
8 changed files with 199 additions and 59 deletions

View File

@@ -214,13 +214,13 @@ void main() {
});
group("Testing selectedIdEditStateProvider", () {
testWidgets(
'selectedIdEditStateProvider should have an initial value of null',
(tester) async {
testWidgets('It should have an initial value of null', (tester) async {
await tester.pumpWidget(
const ProviderScope(
child: MaterialApp(
home: CollectionPane(),
home: Scaffold(
body: CollectionPane(),
),
),
),
);
@@ -237,7 +237,9 @@ void main() {
await tester.pumpWidget(
const ProviderScope(
child: MaterialApp(
home: CollectionPane(),
home: Scaffold(
body: CollectionPane(),
),
),
),
);
@@ -267,7 +269,9 @@ void main() {
await tester.pumpWidget(
const ProviderScope(
child: MaterialApp(
home: CollectionPane(),
home: Scaffold(
body: CollectionPane(),
),
),
),
);
@@ -303,7 +307,9 @@ void main() {
await tester.pumpWidget(
const ProviderScope(
child: MaterialApp(
home: CollectionPane(),
home: Scaffold(
body: CollectionPane(),
),
),
),
);