18 lines
292 B
TypeScript
18 lines
292 B
TypeScript
/* tslint:disable */
|
|
import { assert } from "chai";
|
|
import { Utility } from "./utility";
|
|
/* tslint:enable */
|
|
|
|
describe("", () => {
|
|
|
|
beforeEach(() => {
|
|
// TODO
|
|
});
|
|
|
|
describe("#methodName()", () => {
|
|
it("should ", () => {
|
|
// TODO
|
|
});
|
|
});
|
|
});
|