0.0.24 • Published 5 years ago

cargotest v0.0.24

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

Cargotest

An experimental, yet functional, chai testing framework to encourage a more NUnit-ish approach to testing in typescript.

Install

$ npm install -D cargotest

Global runner

$ npm install -g cargotest

Setup

experimentalDecorators and emitDecoratorMetadata needs to be set to true.

Usage

Runner

The runner is used either by invoking the cli application ($ cargo) and the runner will run all tests in ./tests folder (if --path is not provided to cargo cli application).

Test script setup

Package.json

"scripts": {
    "test": "./node_modules/.bin/cargo"
}

Code usage

Cargotest currently supports Test and TestCase decorators, as shown below. The decorators is only used to evaluate the corresponding function and that's it. For assertions, use chai.

import { assert } from "chai";
class TestClass {
    @Test
    public When_something_Then_something() {
        let foo = new Foo();

        assert.equal(foo.Bar(), "Bar");
    }

    @Testcase("Darth", "Vader")
    @Testcase("Obi wan", "Kenobi")
    public When_something_Then_something_else(firstName: string, lastName: string) {
        let bar = new Bar();

        assert.equal(bar.GetLastName(firstName), lastName);
    }
}

License

MIT

0.0.24

5 years ago

0.0.23

5 years ago

0.0.22

5 years ago

0.0.21

5 years ago

0.0.20

5 years ago

0.0.19

5 years ago

0.0.18

5 years ago

0.0.17

5 years ago

0.0.15

5 years ago

0.0.14

5 years ago

0.0.13

5 years ago

0.0.12

5 years ago

0.0.11

5 years ago

0.0.10

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago