Skip to content

Commit bbaecec

Browse files
Fixed Local issue
1 parent d37b13c commit bbaecec

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

browserstack.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
}
2828
],
2929
"run_settings": {
30-
"cypress_config_file": "./cypress.config.js",
30+
"cypress_config_file": "./cypress.config.ts",
3131
"project_name": "BStack Project",
3232
"build_name": "browserstack-build-1",
3333
"exclude": [],
3434
"build_tag": "Regression",
35-
"parallels": "5",
35+
"parallels": "3",
3636
"cypress_version": "12.latest",
3737
"npm_dependencies": {
3838
"typescript": "^5.0.4",
File renamed without changes.

cypress/e2e/localTest.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ describe('Bstack Demo test', () => {
1616
// so we must tell it to visit our website with the `cy.visit()` command.
1717
// Since we want to visit the same URL at the start of all our tests,
1818
// we include it in our beforeEach function so that it runs before each test
19-
cy.visit('http://localhost:8081/')
19+
cy.visit('http://localhost:8082/')
2020
})
2121

2222
it('should see sample local page', () => {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "",
55
"main": "index.js",
66
"scripts": {
7-
"start": "npx http-server -a localhost -p 8081 &",
7+
"start": "npx http-server -a localhost -p 8082 &",
88
"sample-test": "browserstack-cypress run --sync --spec ./cypress/e2e/e2e.cy.ts",
99
"sample-local-test": "npm start && browserstack-cypress run --sync --spec ./cypress/e2e/localTest.cy.ts"
1010
},

0 commit comments

Comments
 (0)