16 lines
251 B
TypeScript
16 lines
251 B
TypeScript
import { assert } from "chai";
|
|
import { Utility } from "./utility";
|
|
|
|
describe("", () => {
|
|
|
|
beforeEach(() => {
|
|
// TODO
|
|
});
|
|
|
|
describe("#methodName()", () => {
|
|
it("should ", () => {
|
|
// TODO
|
|
});
|
|
});
|
|
});
|