You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
describe uses subclasses under the hood which causes the tests to run multiple times. See this example:
classFoo < ActiveSupport::TestCasedescribe("something")dotest("foo")do"my test"endenddescribe("something else")dotest("bar")do"something"endendtest("baz")do"I will run 3 times"endend
describe
uses subclasses under the hood which causes the tests to run multiple times. See this example:minitest/minitest#839
The analyzer should detect multiple tests run by the describe.
The text was updated successfully, but these errors were encountered: