vscode/test
Francisca Carneiro f93c5bc0c5
Fix #182308: Pressing PageUp in the search panel no longer causes the layout to change. (#213067)
Bug (previous behavior):
    1.Press Ctrl+Shift+F to open the search panel.
    2.Enter any text into the search input.
    3.Press PageUp/PageDown.
    4.The layout shifts to the right, hiding the line that indicates the current tab in the activity bar.

Solution:
When search results are displayed, pressing PageUp or PageDown now moves the cursor to the start or end of the search input, respectively. This is achieved by assigning specific functionality to these keys, overriding their default behavior of moving through the page.

Testing:
A smoke test was implemented to assess the fix. The test involves entering text into the search editor, pressing the PageUp and PageDown keys, and checking for any changes in the activity bar's layout.
2024-06-04 15:13:40 -07:00
..
automation Fix #182308: Pressing PageUp in the search panel no longer causes the layout to change. (#213067) 2024-06-04 15:13:40 -07:00
integration chore: update to electron 29 (#209818) 2024-05-11 01:20:28 +09:00
leaks Bump dependencies for debug sub-dependency (#195513) 2023-10-13 09:01:12 -07:00
monaco update vscode-test-web (#201187) 2023-12-19 16:03:03 +01:00
smoke Fix #182308: Pressing PageUp in the search panel no longer causes the layout to change. (#213067) 2024-06-04 15:13:40 -07:00
unit print loader error 2024-06-04 08:23:17 +02:00
.mocharc.json
cgmanifest.json
README.md Fix supported markdown-lint violations in markdown files (#190750) 2023-08-24 08:37:25 +00:00

VSCode Tests

Contents

This folder contains the various test runners for VSCode. Please refer to the documentation within for how to run them:

  • unit: our suite of unit tests (README)
  • integration: our suite of API tests (README)
  • smoke: our suite of automated UI tests (README)