From 954f8daede0766ab1036ffe00379f2fe7da0caf2 Mon Sep 17 00:00:00 2001 From: Vladislav Date: Tue, 12 Jan 2021 16:23:18 +0300 Subject: [PATCH] fixes for changelog --- CHANGELOG.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e48a60a..7973803 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,15 +17,15 @@ The change to use the `integration_test` package is a fundamentally different ap - build_runner - flutter_gherkin 2. Add the following `build.yaml` to the root of your project. This file allows the dart code generator to target files outside of your application's `lib` folder -``` +```yaml targets: -$default: - sources: - - lib/** - - pubspec.* - - $package$ - # Allows the code generator to target files outside of the lib folder - - integration_test/**.dart + $default: + sources: + - lib/** + - pubspec.* + - $package$ + # Allows the code generator to target files outside of the lib folder + - integration_test/**.dart ``` 3. Add the following file (and folder) `example_with_integration_test\test_driver\integration_test_driver.dart`. This file is the entry point to run your tests. See `https://flutter.dev/docs/testing/integration-tests` for more information. ```dart @@ -75,12 +75,12 @@ void main() { ..setWriteFn(print), TestRunSummaryReporter() ..setWriteLineFn(print) - ..setWriteFn(print),, + ..setWriteFn(print), JsonReporter( writeReport: (_, __) => Future.value(), ), ], - (World world) => app.main, + (World world) => app.main(), ); } ```