maxjoehnk / test-cases

Generate test cases for most javascript test runners

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

test-cases

Build Status

This package provides support for test cases in most test runners. Just call setup with the function you use to declare your test (ie it for jasmine or mochas bdd interface, test for mochas tdd interface,...). Right now there is Typescript support for up to 5 arguments, after which its just an any[].

import { setup } from 'test-cases';
import * as mocha from 'mocha';
import { assert } from 'chai';
const test = setup(mocha.test);

suite('Test', () => {
    // With testcases
    test
        .case(1, 2, 3)
        .case(4, 5, 9)
        .run('a + b = c', (a, b, c) => {
            assert.equal(a + b, c);
        });

    // Without testcases
    test('a basic test', () => {
        assert.equal(true, true);
    });
});

About

Generate test cases for most javascript test runners


Languages

Language:TypeScript 95.8%Language:JavaScript 4.2%