From 71d121fff44bcfa290a784a4ec26a93a465d8451 Mon Sep 17 00:00:00 2001 From: Michal Dorner Date: Thu, 12 Nov 2020 23:30:52 +0100 Subject: [PATCH] Mention dart-json format in docs --- README.md | 2 +- action.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 17156e2..1da73ab 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Goal of this project is to create [Github Action](https://github.com/features/ac that could presents test results from popular testing frameworks as Github check run with code annotation in places where test failed. Support for following test reports are planned for initial release: -- [ ] dotnet-trx: [`dotnet test --logger "trx;LogFileName=test-results.trx"`](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-test#examples) - [ ] dart-json: [`dart test --file-reporter=\"json:test-results.json`](https://pub.dev/packages/test) +- [ ] dotnet-trx: [`dotnet test --logger "trx;LogFileName=test-results.trx"`](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-test#examples) - [ ] flutter-machine: [`flutter test --machine > test-results.json`](https://flutter.dev/docs/cookbook/testing/unit/introduction) - [ ] jest-junit: [`jest --ci --reporters=jest-junit`](https://github.com/jest-community/jest-junit#readme) diff --git a/action.yml b/action.yml index 86285df..2beae4d 100644 --- a/action.yml +++ b/action.yml @@ -17,6 +17,7 @@ inputs: reporter: description: | Format of test report. Supported options: + - dart-json - dotnet-trx - flutter-machine - jest-junit