@jable/test
v2.0.0
Published
Javascript test decorators.
Downloads
7
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