Rewrite tests to use ES6 modules.
[dygraphs.git] / auto_tests / tests / update_options.js
index d2465c9..e581110 100644 (file)
@@ -4,7 +4,12 @@
  * @fileoverview Tests for the updateOptions function.
  * @author antrob@google.com (Anthony Robledo)
  */
+
+import Dygraph from '../../src/dygraph';
+
 describe("update-options", function() {
+
+cleanupAfterEach();
   
 var opts = {
   width: 480,
@@ -18,13 +23,6 @@ var data = "X,Y1,Y2\n" +
   "2011-04-04,9,5\n" +
   "2011-05-05,8,3\n";
 
-beforeEach(function() {
-  document.body.innerHTML = "<div id='graph'></div><div id='labels'></div>";
-});
-
-afterEach(function() {
-});
-
 /*
  * Tweaks the dygraph so it sets g._testDrawCalled to true when internal method
  * drawGraph_ is called. Call unWrapDrawGraph when done with this.