minitest-focus icon indicating copy to clipboard operation
minitest-focus copied to clipboard

Add focus for describe blocks

Open jqr opened this issue 1 year ago • 1 comments

Allow calling focus on/before a describe block to focus on all tests within.

describe "My Test" do
  focus
  describe "Group 1" do
    it "will run this" {}  # previous was _just_ this focus
    it "and this"      {}  # now runs this as well
    describe do
      it "this too"    {}  # double nesting also
    end
  end
end

jqr avatar Feb 23 '24 15:02 jqr

Is there any update on the status of this PR?

camdecoster avatar Jan 24 '25 16:01 camdecoster