Rider - "Run Last Test" Keyboard Shortcut

Viewed 208

Recently, I've been working heavily with NUnit. I constantly have to navigate to the name of the function and press Ctrl + U + D (Run Test in Debug Mode).

Is there a keyboard shortcut for "Run Last Test" so I don't have to navigate to it every time?

1 Answers

In Rider, there is an action called "Repeat Previous Run". You can find it on the toolbar in the Unit Test Tool Window:

enter image description here

It can be found in the main menu:

enter image description here

And in the Unit Test Quick List:

enter image description here

If you are not happy with the default shortcut, you can change it in File | Settings | Keymap:

enter image description here

You can also define a shortcut which will be available only inside the Unit Test Tool Window:

enter image description here

Related