Skip to content

content test: Share example data between parsing tests and widgets tests #511

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ migrate_working_dir/
*.iml
*.ipr
*.iws
.idea/
/.idea/*
/android/.idea/*
!/.idea/inspectionProfiles/
!/android/.idea/inspectionProfiles/

# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
Expand Down
51 changes: 51 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions .metadata
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ migration:
- platform: macos
create_revision: c9dd4584702dc5ab67a6dc9c6ebaa33739bac811
base_revision: c9dd4584702dc5ab67a6dc9c6ebaa33739bac811
- platform: web
create_revision: c9dd4584702dc5ab67a6dc9c6ebaa33739bac811
base_revision: c9dd4584702dc5ab67a6dc9c6ebaa33739bac811
- platform: windows
create_revision: c9dd4584702dc5ab67a6dc9c6ebaa33739bac811
base_revision: c9dd4584702dc5ab67a6dc9c6ebaa33739bac811
Expand Down
10 changes: 10 additions & 0 deletions android/.idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 1 addition & 9 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -241,14 +241,6 @@ packages:
url: "https://pub.dev"
source: hosted
version: "1.0.0"
cupertino_icons:
dependency: "direct main"
description:
name: cupertino_icons
sha256: d57953e10f9f8327ce64a508a355f0b1ec902193f66288e8cb5070e7c47eeb2d
url: "https://pub.dev"
source: hosted
version: "1.0.6"
dart_style:
dependency: transitive
description:
Expand Down Expand Up @@ -1026,7 +1018,7 @@ packages:
source: hosted
version: "0.34.0"
stack_trace:
dependency: transitive
dependency: "direct dev"
description:
name: stack_trace
sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b"
Expand Down
59 changes: 25 additions & 34 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,38 +36,34 @@ environment:
dependencies:
flutter:
sdk: flutter
flutter_localizations:
sdk: flutter

# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.2

json_annotation: ^4.8.1
http: ^1.0.0
html: ^0.15.1
intl: ^0.18.0
share_plus_platform_interface: ^3.3.1
share_plus: ^7.0.0
app_settings: ^5.0.0
collection: ^1.17.2
convert: ^3.1.1
crypto: ^3.0.3
device_info_plus: ^9.0.0
file_picker: ^6.0.0
drift: ^2.5.0
path_provider: ^2.0.13
path: ^1.8.3
sqlite3_flutter_libs: ^0.5.13
app_settings: ^5.0.0
file_picker: ^6.0.0
firebase_core: ^2.14.0
firebase_messaging: ^14.6.3
flutter_color_models: ^1.3.3+2
flutter_local_notifications: ^16.1.0
flutter_local_notifications_platform_interface: ^7.0.0+1
html: ^0.15.1
http: ^1.0.0
image_picker: ^1.0.0
intl: ^0.18.0
json_annotation: ^4.8.1
package_info_plus: ^5.0.1
collection: ^1.17.2
path: ^1.8.3
path_provider: ^2.0.13
share_plus: ^7.0.0
share_plus_platform_interface: ^3.3.1
sqlite3_flutter_libs: ^0.5.13
url_launcher: ^6.1.11
convert: ^3.1.1
url_launcher_android: ">=6.1.0"
flutter_localizations:
sdk: flutter
firebase_messaging: ^14.6.3
firebase_core: ^2.14.0
flutter_local_notifications_platform_interface: ^7.0.0+1
flutter_local_notifications: ^16.1.0
crypto: ^3.0.3
flutter_color_models: ^1.3.3+2

dev_dependencies:
flutter_driver:
Expand All @@ -77,19 +73,14 @@ dev_dependencies:
integration_test:
sdk: flutter

# The "flutter_lints" package below contains a set of recommended lints to
# encourage good coding practices. The lint set provided by the package is
# activated in the `analysis_options.yaml` file located at the root of your
# package. See that file for information about deactivating specific lint
# rules and activating additional ones.
flutter_lints: ^3.0.0

json_serializable: ^6.5.4
build_runner: ^2.3.3
test: ^1.23.1
checks: ^0.3.0
drift_dev: ^2.5.2
fake_async: ^1.3.1
flutter_lints: ^3.0.0
json_serializable: ^6.5.4
stack_trace: ^1.11.1
test: ^1.23.1

# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
Expand Down
Loading