Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

test-combo

tedcth1kISC0.0.2

A testing framework that will generate jest test cases based on config

jest, test, unit test, integration test

readme

test-combo

test-combo is a testing framework based on jest. It generates test cases by your configuration and input. Testing with high case coverage is now easy to achieve.

Testing is basically done against a test point / method. There are lots of factors / arguments that will affect the result. Instead of defining the testing condition as a whole, we can define each condition of each factor. With this new kind of definition, we can easily generate all combintaion. There will be no need to write it one by one.

This layer actually run on top of jest. All the phases (like beforeEach) can be set up according to combination of testing factors. The result can be easily divided into success assert and failure assert according to combinations.

basic example

Please refer examples directory