Skip to content

Commit

Permalink
d updated markdown snippets
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Mar 29, 2024
1 parent edb680b commit de3ca78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/how_tos/TestCombinationOfParameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ it will call the function being tested with all
1. Copy this starter text, and adjust for the number of inputs that you have.

<!-- snippet: CombinationsStartingPoint -->
<a id='snippet-combinationsstartingpoint'></a>
<a id='snippet-CombinationsStartingPoint'></a>
```ts
test('CombinationsStartingPoint', () => {
const inputs1 = ["input1.value1", "input1.value2"];
const inputs2 = ["input2.value1", "input2.value2", "input2.value3"];
verifyAllCombinations2((a, b) => `placeholder for ${a}, ${b}`, inputs1, inputs2);
});
```
<sup><a href='/test/Providers/Jest/CombinationApprovals.test.ts#L55-L61' title='Snippet source file'>snippet source</a> | <a href='#snippet-combinationsstartingpoint' title='Start of snippet'>anchor</a></sup>
<sup><a href='/test/Providers/Jest/CombinationApprovals.test.ts#L55-L61' title='Snippet source file'>snippet source</a> | <a href='#snippet-CombinationsStartingPoint' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->

2. Modify each input container for your chosen values.
Expand Down

0 comments on commit de3ca78

Please sign in to comment.