summaryrefslogtreecommitdiff
path: root/spec/javascripts/graphs/stat_graph_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/javascripts/graphs/stat_graph_spec.js')
-rw-r--r--spec/javascripts/graphs/stat_graph_spec.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/javascripts/graphs/stat_graph_spec.js b/spec/javascripts/graphs/stat_graph_spec.js
index ae2821ecad9..71b589e6b83 100644
--- a/spec/javascripts/graphs/stat_graph_spec.js
+++ b/spec/javascripts/graphs/stat_graph_spec.js
@@ -1,8 +1,9 @@
-/* eslint-disable */
+/* eslint-disable quotes */
+/* global StatGraph */
+
//= require graphs/stat_graph
describe("StatGraph", function () {
-
describe("#get_log", function () {
it("returns log", function () {
StatGraph.log = "test";
@@ -14,7 +15,6 @@ describe("StatGraph", function () {
it("sets the log", function () {
StatGraph.set_log("test");
expect(StatGraph.log).toBe("test");
- })
- })
-
+ });
+ });
});