@blynx/test
v0.0.4
Published
A library for testing javascript using decorators
Downloads
26
Maintainers
Readme
@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