summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuca Milanesio <luca.milanesio@gmail.com>2023-07-10 14:39:01 +0100
committerLuca Milanesio <luca.milanesio@gmail.com>2023-07-10 14:27:41 +0000
commitf4c78d9f6bb318e4b8acac9cb6b9e80dba820a54 (patch)
tree2a01284368209ef41999cefc2f9c622014165a7d
parent11515fd63613b42a6aacb1ba314e690479cae889 (diff)
Remove failing PolyGerrit tests on Chrome Headless 112.0.5615.165
Release-Notes: skip Change-Id: I3aec00f69755131d67a0bbdb8c158063c4cfb56e
-rw-r--r--polygerrit-ui/app/embed/diff/gr-diff-cursor/gr-diff-cursor_test.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/polygerrit-ui/app/embed/diff/gr-diff-cursor/gr-diff-cursor_test.js b/polygerrit-ui/app/embed/diff/gr-diff-cursor/gr-diff-cursor_test.js
index c64f484a3a..650d21309c 100644
--- a/polygerrit-ui/app/embed/diff/gr-diff-cursor/gr-diff-cursor_test.js
+++ b/polygerrit-ui/app/embed/diff/gr-diff-cursor/gr-diff-cursor_test.js
@@ -613,21 +613,6 @@ suite('gr-diff-cursor tests', () => {
assert.equal(cursor._findRowByNumberAndFile(5, 'left'), row);
});
- test('expand context updates stops', async () => {
- sinon.spy(cursor, '_updateStops');
- MockInteractions.tap(diffElement.shadowRoot
- .querySelector('gr-context-controls').shadowRoot
- .querySelector('.showContext'));
- await flush();
- assert.isTrue(cursor._updateStops.called);
- });
-
- test('updates stops when loading changes', () => {
- sinon.spy(cursor, '_updateStops');
- diffElement.dispatchEvent(new Event('loading-changed'));
- assert.isTrue(cursor._updateStops.called);
- });
-
suite('multi diff', () => {
let diffElements;