Module t6 - v1.1.9

Lightweight assertion testing framework

NPM Downloads

If T6 is only used during the testing phase of development, it can be installed as a devDependency instead of a dependency. The difference here is that when you pack up your package, or when other people install your package, it will contain all dependencies, but no devDependencies. To install T6 as a devDependency, use the following command in your project directory.

npm i -D t6

T6 contains a simple, lightweight assertion testing framework for JavaScript and TypeScript projects. If any one of the T6 tests fail, it will throw an exception and halt program execution. Exceptions can be caught using the standard try ... catch block.

T6 exports one namespace, T6, that includes several different test types, all of which can be simply derived from T6.isTrue(...). Each test type throws a unique exception message if failed. Custom exception messages are optional, but always recommended for clarity to explain why a test may have failed.

Documents

CHANGELOG
Example/Assert Boolean Values
Example/Catching Exceptions
Example/Custom Message
Example/Math Comparisons

Namespaces

T6