diff --git a/eng/.docsettings.yml b/eng/.docsettings.yml index 3b333bb08446..3f3366da1989 100644 --- a/eng/.docsettings.yml +++ b/eng/.docsettings.yml @@ -126,6 +126,7 @@ known_content_issues: - ["sdk/synapse/synapse/README.md",  "#1583"] - ["sdk/template/template/README.md",  "#1583"] - ["sdk/test-utils/recorder/README.md",  "#1583"] + - ["sdk/test-utils/multi-version/README.md", "#1583"] - ["sdk/test-utils/perfstress/CHANGELOG.md", "#1583"] package_indexing_exclusion_list: diff --git a/sdk/test-utils/multi-version/README.md b/sdk/test-utils/multi-version/README.md index afc054b9c995..2fcf72f3c6f8 100644 --- a/sdk/test-utils/multi-version/README.md +++ b/sdk/test-utils/multi-version/README.md @@ -131,8 +131,7 @@ If all your tests can run across all supported service API versions then this is ### Override supported versions for tests By default, a test suite or test case is executed against each `serviceVersion`. Optionally one can -also use `onVersions()` to specify a list (`ReadOnlyArray`) or a range (`{minVer?: string, -maxVer?: string }`) of supported versions for selected test suites or test cases: +also use `onVersions()` to specify a list (`ReadOnlyArray`) or a range (`{minVer?: string, maxVer?: string }`) of supported versions for selected test suites or test cases: ```javascript // Test author must ensure the list of versions are ordered from oldest to latest. @@ -210,7 +209,8 @@ versionsToTest( { versionForRecording: "7.1" }, (serviceVersion, onVersions) => { // ... - }); + } +); ``` ## Troubleshooting