From 042c2caa88fefe7718c47578fc6f10d584872feb Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Sat, 27 Sep 2025 15:45:56 -0700 Subject: [PATCH] [test] extend Vue node selection browser test to cover Mac (Meta) key (#5824) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Extend Vue node selection tests to also cover Meta key (Mac). ## Changes - **What**: Extended node selection test modifiers to include [Meta key](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/metaKey) alongside existing Ctrl and Shift keys ## Review Focus Cross-platform keyboard modifier testing coverage and Mac-specific interaction patterns. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-5824-test-extend-Vue-node-selection-browser-test-to-cover-Mac-Meta-key-27b6d73d365081778833cefb8592f158) by [Unito](https://www.unito.io) --- browser_tests/tests/vueNodes/interactions/node/select.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/browser_tests/tests/vueNodes/interactions/node/select.spec.ts b/browser_tests/tests/vueNodes/interactions/node/select.spec.ts index 7ae859caf..2af676589 100644 --- a/browser_tests/tests/vueNodes/interactions/node/select.spec.ts +++ b/browser_tests/tests/vueNodes/interactions/node/select.spec.ts @@ -15,7 +15,8 @@ test.describe('Vue Node Selection', () => { const modifiers = [ { key: 'Control', name: 'ctrl' }, - { key: 'Shift', name: 'shift' } + { key: 'Shift', name: 'shift' }, + { key: 'Meta', name: 'meta' } ] as const for (const { key: modifier, name } of modifiers) {