Skip to content

Commit

Permalink
Rename flutter-machine to flutter-json
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Dorner committed Jan 31, 2021
1 parent 10ba394 commit 03def00
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
# Format of test report. Supported options:
# dart-json
# dotnet-trx
# flutter-machine
# flutter-json
# jest-junit
reporter: ''

Expand Down Expand Up @@ -134,7 +134,7 @@ For more information see [dotnet test](https://docs.microsoft.com/en-us/dotnet/c
</details>

<details>
<summary>flutter-machine</summary>
<summary>flutter-json</summary>

Test run must be configured to use [JSON](https://github.com/dart-lang/test/blob/master/pkgs/test/doc/configuration.md#reporter) reporter.
You can configure it in `dart_test.yaml`:
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ inputs:
Format of test report. Supported options:
- dart-json
- dotnet-trx
- flutter-machine
- flutter-json
- jest-junit
required: true
list-suites:
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

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

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ function getParser(reporter: string, options: ParseOptions): TestParser {
return new DartJsonParser(options)
case 'dotnet-trx':
return new DotnetTrxParser(options)
case 'flutter-machine':
case 'flutter-json':
return new DartJsonParser(options)
case 'jest-junit':
return new JestJunitParser(options)
Expand Down

0 comments on commit 03def00

Please sign in to comment.