1
0
Fork 0
mirror of https://github.com/pnx/neotest-phpunit synced 2026-06-17 04:00:03 +02:00

Add support for skipped files

This commit is contained in:
Michael Utz 2022-11-17 01:35:21 +03:00
parent 2c652f9d90
commit 46cdb550c8
2 changed files with 9 additions and 4 deletions

View file

@ -99,6 +99,11 @@ local function make_outputs(test, output_file)
end
end
if test['skipped'] then
test_output.status = "skipped"
test_output.short = make_short_output(test_attr, "skipped")
end
logger.debug("test_output:", test_output)
return test_id, test_output