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.
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.