diff --git a/frontend/src/ts/elements/commandline-lists.ts b/frontend/src/ts/elements/commandline-lists.ts index 70cbe2dde..82ca26714 100644 --- a/frontend/src/ts/elements/commandline-lists.ts +++ b/frontend/src/ts/elements/commandline-lists.ts @@ -3203,6 +3203,18 @@ export const defaultCommands: MonkeyTypes.CommandsGroup = { icon: "fa-arrows-alt-h", subgroup: commandsPageWidth, }, + { + id: "nextTest", + display: "Next test", + alias: "restart start begin type test typing", + icon: "fa-chevron-right", + available: (): boolean => { + return TestUI.resultVisible; + }, + exec: (): void => { + TestLogic.restart(); + }, + }, { id: "viewTypingPage", display: "View Typing Page",