RubyMine comes with a nice way to grep through your project's files: The finder (ctrl + shift + f). Don't...
Element finding is a central feature of Capybara. Since #find is normally used to get elements from the current page...
Jasmine has long standing support for writing asynchronous specs. In days gone by we used the done callback to achieve...
The goal is to get Jasmine specs running in a Rails project using Webpacker, with the browser based test runner...
If your Ruby project includes a gem like Spreewald that comes with some external step definition, RubyMine does not know...
If rspec hangs with no output and you dont get a backtrace neither with --backtrace nor by just killing it...
With ActiveType 1.2 you can modify associations (has_many etc.) after they have been defined. One common use case for...
In Ruby on Rails, all objects have a useful blank? method. It returns true for nil but also for empty...
The gem json fails to install for Ruby 2.5 if you use a version equal or below 1.8.3.
Katapult was an endeavor to dramatically speed up starting a new Rails application. However, it turned out to save less...
Travis changed their default distribution from Ubuntu 14.04 (trusty) to 16.04 (precise). This might break your test setup for new...
Not all versions of Node.js are compatible with each other. Also npm packages may require a minimum or maximum version...
The issue in this card can occur if the node_modules directory is checked into your Git repository. We usually...
When installing a gem you can use version comparators like >= or ~>. That way it is possible to fetch the latest...
When you update your ChromeDriver to version 75 or beyond, you might get w3c errors in your tests.
Cucumber up to version 2 had a neat feature called Step Argument Transforms which was dropped in favor of Cucumber...
When deploying with capistrano it's possible you get this "error" message: *** [err :: example.com] There are no Phusion Passenger-served...
If you get requests with values for formats like this: {:locale=>[:de], :formats=>["../../../../../../../../../../etc/services{{"], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby...
Set up a package root in your homedir to hold the Node "global" packages: $ NPM_PACKAGES="$HOME/.npm-packages"
Until Capybara 2, node finders that accept a text option were able to find nodes based on rendered text, even...
Webpacker can automatically create an icon font from SVG files, which is really handy. When you're using the asset...
jQuery has a function $.fn.trigger(). You can use it to dispatch an event on a jQuery object: let $element = $('.foo...
It is quite easy to migrate from CoffeeScript to ES6. You can use decaffeinate to convert your CoffeeScript source to...
Over the years we have tried several solution to have vector icons in our applications. There are many ways to...