Testy / TestyTs

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

Focus ignore #85

Closed Aboisier closed 3 years ago

Aboisier commented 3 years ago

Purpose

Fixed an issue with XTestSuite, which simply did not work. Added a new way of focusing/ignoring tests. Instead of focusing tests using the @FTest() decorator, it is now possible to simply use the @Test.focus() method. Symetrically, it is possible to ignore tests by doing @Test.ignore(). This also works for test suites.

Approach

Added e2e, used hybrid types to type the Test decorator.