X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=auto_tests%2Ftests%2Fupdate_options.js;h=e5811101cf4d32168c3a389b40a6d4966e753ac0;hb=refs%2Fheads%2Fopt-size-check;hp=ea3dfaaac4cb38cbb8c49a712d35124d3f7c4488;hpb=89fdcedbda6906d90e15d84285c4f6c0b8d96d28;p=dygraphs.git diff --git a/auto_tests/tests/update_options.js b/auto_tests/tests/update_options.js index ea3dfaa..e581110 100644 --- a/auto_tests/tests/update_options.js +++ b/auto_tests/tests/update_options.js @@ -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 = "
"; -}); - -afterEach(function() { -}); - /* * Tweaks the dygraph so it sets g._testDrawCalled to true when internal method * drawGraph_ is called. Call unWrapDrawGraph when done with this. @@ -133,7 +131,7 @@ it('testUpdateColors', function() { var colors1 = [ "#aaa", "#bbb" ]; graph.updateOptions({ colors: colors1 }); - assert.equal(colors1, graph.getColors()); + assert.deepEqual(colors1, graph.getColors()); // extra colors are ignored until you add additional data series. var colors2 = [ "#ddd", "#eee", "#fff" ]; @@ -145,10 +143,10 @@ it('testUpdateColors', function() { "2011-01-01,2,3,4\n" + "2011-02-02,5,3,2\n" }); - assert.equal(colors2, graph.getColors()); + assert.deepEqual(colors2, graph.getColors()); graph.updateOptions({ colors: null, file: data }); - assert.equal(defaultColors, graph.getColors()); + assert.deepEqual(defaultColors, graph.getColors()); }); // Regression test for http://code.google.com/p/dygraphs/issues/detail?id=249