Releases: Testy/TestyTs
Releases · Testy/TestyTs
v2.0.0-beta.7
v2.0.0-beta.6
Improvements
- Refactored reporters in order to
- Allow for multiple reporters to work in parallel
- Pave the way for external reporters (plugins)
v2.0.0-beta.5
Improvements
- Updated most dependencies
v2.0.0-beta.4
Improvements
- Add a new cli option (
-files <comma-separated-list-of-glob>
) to allow users to run tests located in files matching any of the specified glob patterns. (Thanks for the suggestion, Mladen!)
v2.0.0-beta.3
Fixes
- Fixed issue with the
XTestSuite
. It did not ignore tests, now it does.
Improvements
- 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.
v2.0.0-beta.2
Improvements
- Improved logging (failed test suites now display the stacktrace, more color and bold were added) (#79, thanks for the suggestion, #geon!)
v1.5.0
v1.4.0
Fixes
- Fixed issue stack overflow issue with comparing objects (#77, thanks for reporting, @Pointotech!)
Miscellaneous
- Moved https://github.com/Testy/testyts-assertion lib into this repository.
v1.3.0
Features
- Added support for specifying a setup file that is executed before all the tests run. (tentatively fixes #49, thanks for reporting, @BorderCloud!)
v1.2.0
Fixes
- Added support for path mapping module resolution using tsconfig-paths (#61, thanks for reporting, @A-ZC-Lau!)