Skip to content

Commit 0d6ce0c

Browse files
committed
ctrl+shift+" - to run tests, not to generate
1 parent 8651b12 commit 0d6ce0c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ <h3 class="text-xl font-black text-white mb-6 tracking-tighter italic">OPEN NEW
435435
if ((e.ctrlKey || e.metaKey) && e.key === 's') { e.preventDefault(); triggerSave(); }
436436
if ((e.ctrlKey || e.metaKey) && e.shiftKey && e.key === 'M') { e.preventDefault(); const mc = e.target.closest('.monaco-container') || e.target.closest('#codeDebugRow'); if(mc) toggleMaximize(mc.id); }
437437
if ((e.ctrlKey || e.metaKey) && e.key === "'") { e.preventDefault(); runCode(); }
438-
if ((e.ctrlKey || e.metaKey) && e.key === '"') { e.preventDefault(); generateTests(); }
438+
if ((e.ctrlKey || e.metaKey) && e.key === '"') { e.preventDefault(); runTests(); }
439439
if ((e.ctrlKey || e.metaKey) && e.shiftKey && (e.key === 'v' || e.key === 'V')) { e.preventDefault(); toggleVoice(); }
440440
if ((e.ctrlKey || e.metaKey) && e.shiftKey && e.key === '?') { e.preventDefault(); clickNearestValidate(); }
441441
if ((e.ctrlKey || e.metaKey) && e.shiftKey && (e.key === 'd' || e.key === 'D')) { e.preventDefault(); debugCode(); }

0 commit comments

Comments
 (0)