a7e0ca9e83
Present in the large majority of files of each respective type.
17 lines
369 B
JavaScript
17 lines
369 B
JavaScript
describe("StatGraph", function () {
|
|
|
|
describe("#get_log", function () {
|
|
it("returns log", function () {
|
|
StatGraph.log = "test";
|
|
expect(StatGraph.get_log()).toBe("test");
|
|
});
|
|
});
|
|
|
|
describe("#set_log", function () {
|
|
it("sets the log", function () {
|
|
StatGraph.set_log("test");
|
|
expect(StatGraph.log).toBe("test");
|
|
})
|
|
})
|
|
|
|
});
|