-
Notifications
You must be signed in to change notification settings - Fork 0
Feature/fix unit tests #6
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
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
891bae7
Remove generated test
gabrielbmoro 4f17190
Make the search data source test work again + generate code step
gabrielbmoro 941d67b
Update lint issue
gabrielbmoro ba45842
Avoid print and use debugPrint instead
gabrielbmoro aef2635
Update gitignore file and remove extra platform source sets
gabrielbmoro 936045f
Remove generated code in tests source set too
gabrielbmoro 93a60bc
Merge pull request #7 from CodandoTV/feature/some-improv
gabrielbmoro File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,45 +1,171 @@ | ||
| # Do not remove or rename entries in this file, only add new ones | ||
| # See https://github.com/flutter/flutter/issues/128635 for more context. | ||
|
|
||
| # Miscellaneous | ||
| *.class | ||
| *.lock | ||
| *.log | ||
| *.pyc | ||
| *.swp | ||
| .DS_Store | ||
| .atom/ | ||
| .build/ | ||
| .buildlog/ | ||
| .history | ||
| .svn/ | ||
| .swiftpm/ | ||
| migrate_working_dir/ | ||
|
|
||
| # As packages are no longer pinned, we use a lockfile for testing locally. | ||
| # When unpinning packages, Using lockfiles ensures that failures in PRs are | ||
| # actually due to those PRs, not due to a package being updated. | ||
| !/pubspec.lock | ||
|
|
||
| # IntelliJ related | ||
| *.iml | ||
| *.ipr | ||
| *.iws | ||
| .idea/ | ||
|
|
||
| # 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 | ||
| # is commented out by default. | ||
| #.vscode/ | ||
| # Visual Studio Code related | ||
| .classpath | ||
| .project | ||
| .settings/ | ||
| .vscode/* | ||
| .ccls-cache | ||
|
|
||
| # This file, on the master branch, should never exist or be checked-in. | ||
| # | ||
| # On a *final* release branch, that is, what will ship to stable or beta, the | ||
| # file can be force added (git add --force) and checked-in in order to effectively | ||
| # "pin" the engine artifact version so the flutter tool does not need to use git | ||
| # to determine the engine artifacts. | ||
| # | ||
| # See https://github.com/flutter/flutter/blob/main/docs/tool/Engine-artifacts.md. | ||
| /bin/internal/engine.version | ||
|
|
||
| # Flutter repo-specific | ||
| /bin/cache/ | ||
| /bin/internal/bootstrap.bat | ||
| /bin/internal/bootstrap.sh | ||
| /bin/internal/engine.realm | ||
| /bin/mingit/ | ||
| /dev/benchmarks/mega_gallery/ | ||
| /dev/bots/.recipe_deps | ||
| /dev/bots/android_tools/ | ||
| /dev/devicelab/ABresults*.json | ||
| /dev/docs/doc/ | ||
| /dev/docs/api_docs.zip | ||
| /dev/docs/flutter.docs.zip | ||
| /dev/docs/lib/ | ||
| /dev/docs/pubspec.yaml | ||
| /dev/integration_tests/**/xcuserdata | ||
| /dev/integration_tests/**/Pods | ||
| /packages/flutter/coverage/ | ||
| version | ||
| analysis_benchmark.json | ||
|
|
||
| # packages file containing multi-root paths | ||
| .packages.generated | ||
|
|
||
| # Flutter/Dart/Pub related | ||
| **/doc/api/ | ||
| **/ios/Flutter/.last_build_id | ||
| .dart_tool/ | ||
| .flutter-plugins | ||
| .flutter-plugins-dependencies | ||
| **/generated_plugin_registrant.dart | ||
| .packages | ||
| .pub-preload-cache/ | ||
| .pub-cache/ | ||
| .pub/ | ||
| /build/ | ||
| build/ | ||
| flutter_*.png | ||
| linked_*.ds | ||
| unlinked.ds | ||
| unlinked_spec.ds | ||
|
|
||
| # Android related | ||
| **/android/**/gradle-wrapper.jar | ||
| .gradle/ | ||
| **/android/captures/ | ||
| **/android/gradlew | ||
| **/android/gradlew.bat | ||
| **/android/**/GeneratedPluginRegistrant.java | ||
| **/android/key.properties | ||
| *.jks | ||
| local.properties | ||
| **/.cxx/ | ||
|
|
||
| # Symbolication related | ||
| # iOS/XCode related | ||
| **/ios/**/*.mode1v3 | ||
| **/ios/**/*.mode2v3 | ||
| **/ios/**/*.moved-aside | ||
| **/ios/**/*.pbxuser | ||
| **/ios/**/*.perspectivev3 | ||
| **/ios/**/*sync/ | ||
| **/ios/**/.sconsign.dblite | ||
| **/ios/**/.tags* | ||
| **/ios/**/.vagrant/ | ||
| **/ios/**/DerivedData/ | ||
| **/ios/**/Icon? | ||
| **/ios/**/Pods/ | ||
| **/ios/**/.symlinks/ | ||
| **/ios/**/profile | ||
| **/ios/**/xcuserdata | ||
| **/ios/.generated/ | ||
| **/ios/Flutter/.last_build_id | ||
| **/ios/Flutter/App.framework | ||
| **/ios/Flutter/Flutter.framework | ||
| **/ios/Flutter/Flutter.podspec | ||
| **/ios/Flutter/Generated.xcconfig | ||
| **/ios/Flutter/ephemeral | ||
| **/ios/Flutter/app.flx | ||
| **/ios/Flutter/app.zip | ||
| **/ios/Flutter/flutter_assets/ | ||
| **/ios/Flutter/flutter_export_environment.sh | ||
| **/ios/ServiceDefinitions.json | ||
| **/ios/Runner/GeneratedPluginRegistrant.* | ||
|
|
||
| # macOS | ||
| **/Flutter/ephemeral/ | ||
| **/Pods/ | ||
| **/macos/Flutter/GeneratedPluginRegistrant.swift | ||
| **/macos/Flutter/ephemeral | ||
| **/xcuserdata/ | ||
|
|
||
| # Windows | ||
| **/windows/flutter/ephemeral/ | ||
| **/windows/flutter/generated_plugin_registrant.cc | ||
| **/windows/flutter/generated_plugin_registrant.h | ||
| **/windows/flutter/generated_plugins.cmake | ||
|
|
||
| # Linux | ||
| **/linux/flutter/ephemeral/ | ||
| **/linux/flutter/generated_plugin_registrant.cc | ||
| **/linux/flutter/generated_plugin_registrant.h | ||
| **/linux/flutter/generated_plugins.cmake | ||
|
|
||
| # Coverage | ||
| coverage/ | ||
|
|
||
| # Symbols | ||
| app.*.symbols | ||
|
|
||
| # Obfuscation related | ||
| app.*.map.json | ||
| # Exceptions to above rules. | ||
| !**/ios/**/default.mode1v3 | ||
| !**/ios/**/default.mode2v3 | ||
| !**/ios/**/default.pbxuser | ||
| !**/ios/**/default.perspectivev3 | ||
| !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages | ||
| !/dev/ci/**/Gemfile.lock | ||
| !.vscode/settings.json | ||
|
|
||
| # Android Studio will place build artifacts here | ||
| /android/app/debug | ||
| /android/app/profile | ||
| /android/app/release | ||
| # Monorepo | ||
| .cipd | ||
| .gclient | ||
| .gclient_entries | ||
| .python-version | ||
| .gclient_previous_custom_vars | ||
| .gclient_previous_sync_commits | ||
| .flutter-plugins | ||
| /lib/main.config.dart | ||
| *.freezed.dart | ||
| *.g.dart | ||
| */di.config.dart | ||
| *.mocks.dart |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a new step before run the tests considering Mock framework generates code