Skip to content

Commit c5baa9f

Browse files
07souravkundafrancisf
authored andcommitted
update: remove ppp, fix string assert
1 parent 3c995e5 commit c5baa9f

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

NUnit-BrowserStack/SampleLocalTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public SampleLocalTest() : base() { }
1414
public void TunnelCheck()
1515
{
1616
driver.Navigate().GoToUrl("http://bs-local.com:45454/");
17-
Assert.Contains("BrowserStack Local", driver.Title);
17+
StringAssert.Contains("BrowserStack Local", driver.Title);
1818
}
1919
}
2020
}

NUnit-BrowserStack/browserstack.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# =============================
44
# Add your BrowserStack userName and acccessKey here or set BROWSERSTACK_USERNAME and
55
# BROWSERSTACK_ACCESS_KEY as env variables
6+
67
userName: YOUR_USERNAME
78
accessKey: YOUR_ACCESS_KEY
89

@@ -41,17 +42,6 @@ platforms:
4142
browserName: chrome # Try 'samsung' for Samsung browser
4243
osVersion: 12.0
4344

44-
# =======================
45-
# Parallels per Platform
46-
# =======================
47-
# The number of parallel threads to be used for each platform set.
48-
# BrowserStack's SDK runner will select the best strategy based on the configured value
49-
#
50-
# Example 1 - If you have configured 3 platforms and set `parallelsPerPlatform` as 2, a total of 6 (2 * 3) parallel threads will be used on BrowserStack
51-
#
52-
# Example 2 - If you have configured 1 platform and set `parallelsPerPlatform` as 5, a total of 5 (1 * 5) parallel threads will be used on BrowserStack
53-
parallelsPerPlatform: 1
54-
5545
# ==========================================
5646
# BrowserStack Local
5747
# (For localhost, staging/private websites)

0 commit comments

Comments
 (0)