Skip to content

Commit 30fc41f

Browse files
committed
add upstream command
1 parent e046032 commit 30fc41f

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/cm/commandRegistry.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,17 @@ function registerCoreCommands() {
570570
return true;
571571
},
572572
});
573+
addCommand({
574+
name: "run-tests",
575+
description: "Run Tests",
576+
key: "Ctrl-Shift-T",
577+
readOnly: true,
578+
requiresView: false,
579+
run() {
580+
acode.exec("run-tests");
581+
return true;
582+
},
583+
});
573584

574585
// Additional editor-centric helpers mapped to CodeMirror primitives that have existing key bindings in defaults.
575586
addCommand({

0 commit comments

Comments
 (0)