๐ Flutter Quill Test
Test utilities for flutter_quill which include methods to simplify interacting with the editor in test cases.
๐ Table of contents
๐พ Installation
Run the following command:
flutter pub add dev:flutter_quill_test
Also add flutter_test
as a dependency:
dev_dependencies:
flutter_quill_test: any # Use latest Version
flutter_test:
sdk: flutter
๐งช Testing
To aid in testing applications using the editor an extension to the flutter WidgetTester
is provided which includes
methods to simplify interacting with the editor in test cases.
Import the test utilities in your test file:
import 'package:flutter_quill_test/flutter_quill_test.dart';
and then enter text using quillEnterText
:
await tester.quillEnterText(find.byType(QuillEditor), 'test\n');
๐ค Contributing
We greatly appreciate your time and effort.
To keep the project consistent and maintainable, we have a few guidelines that we ask all contributors to follow. These guidelines help ensure that everyone can understand and work with the code easier.
See Contributing for more details.