From dd84b9a03d24d27edafc861a988239de30f08a46 Mon Sep 17 00:00:00 2001 From: Giorgenes Gelatti Date: Tue, 13 Aug 2019 10:41:52 +1000 Subject: [PATCH] Mention focus: true in the specs --- doc/development/testing_guide/best_practices.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/development/testing_guide/best_practices.md b/doc/development/testing_guide/best_practices.md index 448d9fd01c4..9d6792e9139 100644 --- a/doc/development/testing_guide/best_practices.md +++ b/doc/development/testing_guide/best_practices.md @@ -70,6 +70,7 @@ bundle exec rspec spec/[path]/[to]/[spec].rb - On `before` and `after` hooks, prefer it scoped to `:context` over `:all` - When using `evaluate_script("$('.js-foo').testSomething()")` (or `execute_script`) which acts on a given element, use a Capyabara matcher beforehand (e.g. `find('.js-foo')`) to ensure the element actually exists. +- Use `focus: true` to isolate parts of the specs you want to run. [four-phase-test]: https://robots.thoughtbot.com/four-phase-test