Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
seeM committed Jan 9, 2025
1 parent 4e64767 commit 974e6ae
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,12 @@ suite('KeybindingsEditorModel', () => {
});

test('filter by command id', async () => {
const id = 'workbench.action.increaseViewSize';
// --- Start Positron ---
// In a Positron test suite, we (indirectly) import src/vs/workbench/browser/actions/layoutActions.ts
// which registers the actual workbench.action.increaseViewSize command, causing this test to
// fail. Prepend 'test.' to resolve the conflict.
const id = 'test.workbench.action.increaseViewSize';
// --- End Positron ---
registerCommandWithTitle(id, 'some title');
prepareKeybindingService();

Expand Down

0 comments on commit 974e6ae

Please sign in to comment.