From 161c97e78e51591840dbb5a83c0cb9f0ffa457a3 Mon Sep 17 00:00:00 2001 From: Connor Vidlock Date: Mon, 29 Jan 2024 15:48:55 -0600 Subject: [PATCH] fix available list-suites --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index c6d579b..635b8ff 100644 --- a/src/main.ts +++ b/src/main.ts @@ -39,7 +39,7 @@ class TestReporter { readonly path = core.getInput('path', {required: true}) readonly pathReplaceBackslashes = core.getInput('path-replace-backslashes', {required: false}) === 'true' readonly reporter = core.getInput('reporter', {required: true}) - readonly listSuites = core.getInput('list-suites', {required: true}) as 'all' | 'failed' + readonly listSuites = core.getInput('list-suites', {required: true}) as 'all' | 'failed' | 'non-skipped' readonly listTests = core.getInput('list-tests', {required: true}) as 'all' | 'failed' | 'none' readonly maxAnnotations = parseInt(core.getInput('max-annotations', {required: true})) readonly failOnError = core.getInput('fail-on-error', {required: true}) === 'true'