test: filter integration (#2821)

* test: add checklist filter test

* fix: widget reference to invalid databaseController

* fix: SelectOptionFilterList doesn't expand to fill the CustomScrollView

* test: add single select and multi-select filter test

* ci: set protoc version
This commit is contained in:
Nathan.fooo
2023-06-16 14:32:32 +08:00
committed by GitHub
parent 63eee8b415
commit 14dee6b797
10 changed files with 239 additions and 72 deletions

View File

@ -45,7 +45,7 @@ if is_empty ${ret}
end
ret = which protoc-gen-dart
if is_empty ${ret}
exec cmd.exe /c dart pub global activate protoc_plugin
exec cmd.exe /c dart pub global activate protoc_plugin 20.0.1
end
ret = which protoc-gen-dart
if is_empty ${ret}
@ -60,14 +60,14 @@ script_runner = "@duckscript"
[tasks.install_flutter_protobuf_compiler]
script = """
echo "Install protoc_plugin (Dart)"
dart pub global activate protoc_plugin
dart pub global activate protoc_plugin 20.0.1
"""
script_runner = "@shell"
[tasks.install_flutter_protobuf_compiler.linux]
script = """
echo "Install protoc_plugin (Dart)"
dart pub global activate protoc_plugin
dart pub global activate protoc_plugin 20.0.1
"""
script_runner = "@shell"