Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Ellet committed Dec 5, 2023
1 parent ec38dee commit 8d3215f
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions test/bug_fix_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,17 @@ void main() {

await tester.pumpWidget(
MaterialApp(
home: QuillSimpleToolbar(
configurations: QuillSimpleToolbarConfigurations(
controller: controller,
showRedo: false,
customButtons: const [
QuillToolbarCustomButtonOptions(
tooltip: tooltip,
)
],
home: Scaffold(
body: QuillSimpleToolbar(
configurations: QuillSimpleToolbarConfigurations(
controller: controller,
showRedo: false,
customButtons: const [
QuillToolbarCustomButtonOptions(
tooltip: tooltip,
)
],
),
),
),
),
Expand Down

0 comments on commit 8d3215f

Please sign in to comment.