2017-03-07 22:15:53 +00:00
|
|
|
import { assert } from "chai";
|
2016-07-01 22:09:55 +01:00
|
|
|
|
|
|
|
function jsonify(obj: Object) {
|
|
|
|
let stringifiedJson = JSON.stringify(obj);
|
|
|
|
return JSON.parse(stringifiedJson);
|
|
|
|
}
|
|
|
|
|
|
|
|
describe("", () => {
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2017-03-07 22:15:53 +00:00
|
|
|
|
2016-07-01 22:09:55 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
describe("#methodName()", () => {
|
|
|
|
it("should ", () => {
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|