We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c594952 commit 64b8aafCopy full SHA for 64b8aaf
1 file changed
tests/specs/local_test.js
@@ -1,6 +1,10 @@
1
describe('BrowserStack Local Testing', () => {
2
it('can check tunnel working', async () => {
3
- await browser.url('http://bs-local.com:45691/check');
4
- (await browser.getPageSource()).should.match(/Up and running/i);
+ await browser.url('http://bs-local.com:45454');
+ await browser.waitUntil(
5
+ async () => (await browser.getTitle()).match(/BrowserStack Local/i),
6
+ 5000,
7
+ "Failed to connect local tunnel"
8
+ );
9
});
10
0 commit comments