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
This library enforces a paradigm that is reinforced the more it's used in a project: prop permutations go in test_cases files, and test files iterate through the test cases and make assertions.
However, there are certain components (e.g., higher-order components) that I may want to exclude from the test kitchen component without introducing a different testing structure paradigm. One idea would be to introduce a hidden: true option into the test case API that filters out that case from the final component.
This library enforces a paradigm that is reinforced the more it's used in a project: prop permutations go in
test_casesfiles, andtestfiles iterate through the test cases and make assertions.However, there are certain components (e.g., higher-order components) that I may want to exclude from the test kitchen component without introducing a different testing structure paradigm. One idea would be to introduce a
hidden: trueoption into the test case API that filters out that case from the final component.