fixes for changelog

This commit is contained in:
Vladislav 2021-01-12 16:23:18 +03:00
parent b17ea6c00c
commit 954f8daede
1 changed files with 10 additions and 10 deletions

View File

@ -17,7 +17,7 @@ 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:
@ -75,12 +75,12 @@ void main() {
..setWriteFn(print),
TestRunSummaryReporter()
..setWriteLineFn(print)
..setWriteFn(print),,
..setWriteFn(print),
JsonReporter(
writeReport: (_, __) => Future<void>.value(),
),
],
(World world) => app.main,
(World world) => app.main(),
);
}
```