generated from nhcarrigan/template
8 lines
149 B
TypeScript
8 lines
149 B
TypeScript
|
import { assert } from "chai";
|
||
|
|
||
|
suite("This is an example test", () => {
|
||
|
test("It uses the assert API", () => {
|
||
|
assert.isTrue(true);
|
||
|
});
|
||
|
});
|