From a59375b2be6c9132be12f501106d5e0c32fc6133 Mon Sep 17 00:00:00 2001 From: Emily KL <4672118+emilykl@users.noreply.github.com> Date: Thu, 19 Feb 2026 15:19:33 -0500 Subject: [PATCH 1/2] bump Chrome version --- .circleci/config.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7bee2130434..39633e96386 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -44,7 +44,7 @@ jobs: install_firefox: false install_geckodriver: false install_chrome: true - chrome_version: "133.0.6943.126" + chrome_version: "135.0.7049.95" - attach_workspace: at: ~/ - run: @@ -83,7 +83,7 @@ jobs: install_firefox: false install_geckodriver: false install_chrome: true - chrome_version: "133.0.6943.126" + chrome_version: "135.0.7049.95" - attach_workspace: at: ~/ - run: @@ -105,7 +105,7 @@ jobs: install_firefox: false install_geckodriver: false install_chrome: true - chrome_version: "133.0.6943.126" + chrome_version: "135.0.7049.95" - attach_workspace: at: ~/ - run: @@ -127,7 +127,7 @@ jobs: install_firefox: false install_geckodriver: false install_chrome: true - chrome_version: "133.0.6943.126" + chrome_version: "135.0.7049.95" - attach_workspace: at: ~/ - run: @@ -169,7 +169,7 @@ jobs: install_firefox: false install_geckodriver: false install_chrome: true - chrome_version: "133.0.6943.126" + chrome_version: "135.0.7049.95" - attach_workspace: at: ~/ - run: @@ -190,7 +190,7 @@ jobs: install_firefox: false install_geckodriver: false install_chrome: true - chrome_version: "133.0.6943.126" + chrome_version: "135.0.7049.95" - attach_workspace: at: ~/ - run: From 5f7a1393c3ac4462e1f0834ee587b1a84a8d4270 Mon Sep 17 00:00:00 2001 From: Emily KL <4672118+emilykl@users.noreply.github.com> Date: Thu, 19 Feb 2026 16:52:54 -0500 Subject: [PATCH 2/2] add delay --- test/jasmine/tests/sankey_test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/jasmine/tests/sankey_test.js b/test/jasmine/tests/sankey_test.js index 09faf905013..76fa0e9f27c 100644 --- a/test/jasmine/tests/sankey_test.js +++ b/test/jasmine/tests/sankey_test.js @@ -1454,6 +1454,7 @@ describe('sankey tests', function() { positionAfterDrag = [positionBeforeDrag[0] + move[0], positionBeforeDrag[1] + move[1]]; return drag({node: node, dpos: move, nsteps: 10, timeDelay: 1000}); }) + .then(delay(500)) .then(function() { // Check that the node was really moved nodes = document.getElementsByClassName('sankey-node');