Testy / TestyTs

✔️ Modern TypeScript testing framework.
http://testy.github.io
ISC License
123 stars 8 forks source link

Feature/16 test report summary #17

Closed Aboisier closed 5 years ago

Aboisier commented 5 years ago

Purpose

Print a summary at the end of a test report.

Approach

Implemented a RootTestSuite which extends the TestSuite class. The LoggerTestReporterDecorator checks if the current test suite is a RootTestSuite. If so, it prints the summary.

Example image

Aboisier commented 5 years ago

I refactored to use the visitor pattern instead of a type check.