DEV Community

Cover image for VSCode Extensions for Faster Testing with Rspec πŸ› 
Jaye Hernandez
Jaye Hernandez

Posted on

16 5

VSCode Extensions for Faster Testing with Rspec πŸ› 

Let's run through some extensions to improve your workflow if you use Rspec, a testing tool for Ruby!

It’s another one of those VSCode extensions post - I know. But trust me on this one.

If you haven’t heard about Visual Studio Code (VSCode), it’s a text editor by Microsoft. One of the reasons why it's my editor of choice is the ability to install extensions made by fellow developers.

You can actually spend a day just installing and configuring extensions to your liking. Not that I did that. πŸ˜…

These three extensions made Test Driven Development (TDD) with Rspec much better. I love the ease of use these offer without sacrificing anything. Writing tests became faster and easier for me to do, I hope these help you out too! Hey that rhymed.

  1. Rails Go To Spec by sporto

    No need to look through your files in the sidebar, or use the search bar to open the spec file. You can jump between code and spec files with one command: Ctrl + Shift + Y (Cmd for Mac)

    If the code file does not exist yet, this creates one for you! Works both ways.

    Use case: I often do this at the start of the test writing process. I create the code file first, then press Cmd + Shift + Y to create the spec file.

  2. Rails Run Specs by Peter Negrei

    I used to get the path of a file/inside/lots/of/folders/sad_spec.rb just to type out the test command: bundle exec rspec file/inside/lots/of/folders/sad_spec.rb.

    This extension runs a spec file for you with in one swift command: Ctrl + Shift + T (Cmd for Mac) It works even if you are in the code file as well, which is a pretty nifty feature.

    Use case: Probably my most used extension as I use it to run all the tests in one file. Gotta make sure they all pass. πŸ’―

  3. Ruby Test Explorer by Connor Shea

    If you're a more visually oriented person, this is the extension you’re looking for. It helps you visualize all the tests in one file, with groupings according to files inside a describe or context block.

    You get to see which blocks passed and which failed in an instant, and re-run any of those on their own.

    Ruby Test Explorer Screenshot
    Image from Connor Shea

    Use case: Great for debugging that one single failing test that you have absolutely no idea why it’s failing when all other 10 tests passed. You can just select that single test (or block of tests) and debug.

This is just a small list, but the impact they have is unmatched.

Do you use any other VSCode Rspec extensions? I’d love to know about them, let’s help each other out!

Hostinger image

Get n8n VPS hosting 3x cheaper than a cloud solution

Get fast, easy, secure n8n VPS hosting from $4.99/mo at Hostinger. Automate any workflow using a pre-installed n8n application and no-code customization.

Start now

Top comments (7)

Collapse
 
raphael_jambalos profile image
Raphael Jambalos β€’

Great post, Jaye! I wish there was something like this in Sublime Text though...

Collapse
 
jayehernandez profile image
Jaye Hernandez β€’

Thank you! Sublime Text needs to step up their game πŸ€”

Collapse
 
vaibhavkhulbe profile image
Vaibhav Khulbe β€’

Nice post! Haven't used Ruby/Rspec but it's in my bucket list. Will definitely use some of these. Keep writing 😁

Collapse
 
jayehernandez profile image
Jaye Hernandez β€’

Thanks Vaibhav! Yes, do pick it up sometime, it’s great πŸ’―

Collapse
 
camblan profile image
Julien Camblan β€’

Very useful, thanks! The second one is kinda life changing actually! πŸ™

Collapse
 
jayehernandez profile image
Jaye Hernandez β€’

Glad to help out! The second one is definitely the best πŸ”₯

Collapse
 
thadeu profile image
Thadeu Esteves Jr β€’

vscode-run-rspec-file give us a lot of shortcuts to run our rspec tests

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

πŸ‘‹ Kindness is contagious

Please leave a ❀️ or a friendly comment on this post if you found it helpful!

Okay