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
Currently both Java and PHP cap the number of errors at 11 (this maybe was meant to be 10 but I copied Java!) I imagine some others do to?
This is not really reflected in the testdata - I think we should have a document in there with ~20 errors and some pickle parseErrors showing it's capped off
OR we should remove the (arbitrary?) cap...
The text was updated successfully, but these errors were encountered:
Once you've got more then a few parse errors it is likely that only the first few are actual problems, the others are false errors caused by the previous incorrect syntax.
For example, imagine a feature file with 20 scenarios, but missing the Feature keyword. Every line would have a parse error.
Some parsers are smart enough to make assumptions and somehow guess the intended structure, Berp unfortunately is not.
So to keep the user from being overwhelmed we are limited to limiting the parse errors shown.
Currently both Java and PHP cap the number of errors at 11 (this maybe was meant to be 10 but I copied Java!) I imagine some others do to?
This is not really reflected in the testdata - I think we should have a document in there with ~20 errors and some pickle parseErrors showing it's capped off
OR we should remove the (arbitrary?) cap...
The text was updated successfully, but these errors were encountered: