import { assert } from "chai"; function jsonify(obj: Object) { let stringifiedJson = JSON.stringify(obj); return JSON.parse(stringifiedJson); } describe("", () => { beforeEach(() => { }); describe("#methodName()", () => { it("should ", () => { }); }); });