diff --git a/docs/how_tos/TestCombinationOfParameters.md b/docs/how_tos/TestCombinationOfParameters.md index 50bd3fb5..9c1c9a30 100644 --- a/docs/how_tos/TestCombinationOfParameters.md +++ b/docs/how_tos/TestCombinationOfParameters.md @@ -31,7 +31,7 @@ it will call the function being tested with all 1. Copy this starter text, and adjust for the number of inputs that you have. - + ```ts test('CombinationsStartingPoint', () => { const inputs1 = ["input1.value1", "input1.value2"]; @@ -39,7 +39,7 @@ test('CombinationsStartingPoint', () => { verifyAllCombinations2((a, b) => `placeholder for ${a}, ${b}`, inputs1, inputs2); }); ``` -snippet source | anchor +snippet source | anchor 2. Modify each input container for your chosen values.