Leo Lukin
Leo Lukin

Reputation: 1211

How can I run only one test for only one spec file in RubyMine

I'd like to run only one test for only one spec file in request folder in RubyMine. But I can test only all files with spec:request task. Can anyone help me to run only particular test?

Upvotes: 3

Views: 2153

Answers (1)

Zajn
Zajn

Reputation: 4088

If I understand your question correctly, you can right-click on the test or spec name and click Run {test_name}.

Alternatively, you should be able to place your mouse cursor inside the text of the test name and press CTRL+Shift+F10.

Upvotes: 7

Related Questions