You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Jest's default reporter shows each test result with --verbose option like as:
PASS tests/foo.test.ts
Test for Foo class
✔ test a
✔ test b
✔ test c
PASS tests/bar.test.ts
Test for Bar class
✔ test d
✔ test e
✔ test f
I couldn't find any options of the plugin to get such results.
When I try to run jest with the option like as jest --verbose, the plugin didn't work and all console logs and errors were output.
If I don't use --varbose option, I can get only results for each test suite like as:
PASS tests/foo.test.ts
PASS tests/bar.test.ts
How can I get results for each test(not only for each test suite) with this reporter plugin?
Regards.
The text was updated successfully, but these errors were encountered:
misu-moriya
changed the title
Support verbose (each test result) output
Support verbose (for each test result) output
Mar 19, 2021
Jest's default reporter shows each test result with
--verbose
option like as:I couldn't find any options of the plugin to get such results.
When I try to run jest with the option like as
jest --verbose
, the plugin didn't work and all console logs and errors were output.If I don't use
--varbose
option, I can get only results for each test suite like as:How can I get results for each test(not only for each test suite) with this reporter plugin?
Regards.
The text was updated successfully, but these errors were encountered: