@jable/test
TypeScript icon, indicating that this package has built-in type declarations

2.0.0 • Public • Published

@jabel/test

Javascript test decorators.

Example

@TestClass()
export class Testing {
    @TestMethod()
    public TestMe() {
        throw "err";
    }

    @TestMethod()
    public ServiceTest(assert: Assert) {
        assert.AreEqual(true, true);
    }
}

Outputs:

✗ Testing (1 of 2) Passed
        ✗ TestMe Failed on ERROR: err

Dependents (0)

Package Sidebar

Install

npm i @jable/test

Weekly Downloads

1

Version

2.0.0

License

MIT

Last publish

Collaborators

  • cpamperin
  • jable