Releases: codewars/testest
Releases · codewars/testest
Preload some vocabs from `extra`
See #47
Preloading helps reduce load time starting up Factor on Codewars.
Thanks to Kacarott for supplying and testing the list of vocabs.
Release v2.1
Release 2.1 Features:
- various code, documentation, test-code and user messages improvements
- compatible with both Factor 0.98 and 0.99
- restructure of archive with Docker file moved into separate repository
- removed deprecated
lf
word - prevent cheating by running user code last
- handle compiler errors differently; report in usual format and don't run tests until all are fixed
@kazk contributed the restructure of the archive, other changes by @nomennescio
Release v2.0.1
Fix issue #33. Improved prettyprinting.
Release v2.0.0
release 2.0.0. Features:
- error handling, including the ability to check for expected thrown errors
- automatic conversion of newlines into platform specific line endings
- custom printing of
ERROR:
s - flush output of
describe#{
andit#{
for early messages
Major release because some public (but unused) words were made private.
Support for inexact comparisons with math.margins
Major release 1.0.0. Added vocabulary math.margins to support inexact comparisons. Wrote documentation on testest framework with examples.
Added custom message support combinators
The user can add custom message with combinators
: with-passed ( passed-quotation quot -- )
: with-failed ( failed-quotation quot -- )
: with-passed-failed ( passed-quotation failed-quotation quot -- )
which override the default message handlers for passed and failed tests only during executing quot
.