minitest / minitest-focus

72 stars 9 forks source link

Add focus for describe blocks #20

Open jqr opened 7 months ago

jqr commented 7 months ago

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