21 lines
414 B
TypeScript
21 lines
414 B
TypeScript
import { assert } from "chai";
|
|
import { Numbering } from "../numbering";
|
|
|
|
function jsonify(obj: Object) {
|
|
let stringifiedJson = JSON.stringify(obj);
|
|
return JSON.parse(stringifiedJson);
|
|
}
|
|
|
|
describe("", () => {
|
|
|
|
let numbering = new Numbering;
|
|
beforeEach(() => {
|
|
numbering = new Numbering();
|
|
});
|
|
|
|
describe("#methodName()", () => {
|
|
it("should ", () => {
|
|
|
|
});
|
|
});
|
|
}); |