Skip to content

Commit 217f0a5

Browse files
authored
Merge pull request #88 from tech-sushant/feature-cont
2 parents ff0b9dd + 96b8b8d commit 217f0a5

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/tools/sdk-utils/constants.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ fi
144144
145145
---STEP---
146146
147-
macOS (Apple Silicon) setup (required only if arm64 detected):
147+
macOS (Apple Silicon) setup (Strictly follow if arm64 detected):
148148
Install the x64 version of .NET for BrowserStack compatibility.
149149
150150
- Check your current .NET version:
@@ -153,6 +153,7 @@ Install the x64 version of .NET for BrowserStack compatibility.
153153
\`\`\`
154154
155155
- Ensure the path exists strictly; if not, create it first and then run the setup:
156+
This automatically installs the x64 version of .NET in the specified path. No need to install it from external sources.
156157
\`\`\`bash
157158
sudo dotnet browserstack-sdk setup-dotnet --dotnet-path "<your-chosen-path>" --dotnet-version "<your-dotnet-version>"
158159
\`\`\`
@@ -161,7 +162,7 @@ Install the x64 version of .NET for BrowserStack compatibility.
161162
---STEP---
162163
163164
Run the tests:
164-
- For macOS (Apple Silicon), use the full path:
165+
- For macOS (Apple Silicon), use the full path where the x64 version of .NET is installed:
165166
\`\`\`bash
166167
<your-chosen-path>/dotnet browserstack-sdk
167168
\`\`\`
@@ -221,6 +222,7 @@ Install the x64 version of .NET for compatibility with BrowserStack.
221222
\`\`\`
222223
223224
- Ensure the path exists strictly; if not, create it first and then run the setup:
225+
This automatically installs the x64 version of .NET in the specified path. No need to install it from external sources.
224226
\`\`\`bash
225227
sudo dotnet browserstack-sdk setup-dotnet --dotnet-path "<your-chosen-path>" --dotnet-version "<your-dotnet-version>"
226228
\`\`\`
@@ -489,6 +491,7 @@ export const SUPPORTED_CONFIGURATIONS: ConfigMapping = {
489491
xunit: { instructions: csharpCommonInstructions },
490492
nunit: { instructions: csharpCommonInstructions },
491493
mstest: { instructions: csharpCommonInstructions },
494+
specflow: { instructions: csharpCommonInstructions },
492495
},
493496
},
494497
nodejs: {

src/tools/sdk-utils/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export enum SDKSupportedTestingFrameworkEnum {
3232
nunit = "nunit",
3333
mstest = "mstest",
3434
xunit = "xunit",
35+
specflow = "specflow",
3536
}
3637
export type SDKSupportedTestingFramework =
3738
keyof typeof SDKSupportedTestingFrameworkEnum;

0 commit comments

Comments
 (0)