Skip to content

Commit

Permalink
test: Update config
Browse files Browse the repository at this point in the history
  • Loading branch information
oliversalzburg committed Nov 7, 2022
1 parent 9fda397 commit 8235618
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions packages/tests/source/tests/smoke.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,17 @@ describe("Smoke test", function () {
projectName: "Kitten Scientists",
sessionName: "Smoke tests",
},
"browserstack.appiumLogs": "true",
"browserstack.console": "verbose",
"browserstack.debug": "true",
"browserstack.networkLogs": "true",
"browserstack.appiumLogs": true,
"browserstack.console": "debug",
"browserstack.debug": true,
"browserstack.deviceLogs": true,
// Not available for free users.
"browserstack.networkLogs": false,
"browserstack.networkLogsOptions": {
captureContent: "true",
},
"browserstack.seleniumLogs": "true",
"browserstack.video": "true",
"browserstack.seleniumLogs": true,
"browserstack.video": true,
browserName: "Chrome",
browserVersion: "103.0",
})
Expand All @@ -42,7 +44,7 @@ describe("Smoke test", function () {
}

await driver.navigate().to(config.baseUrl);
await driver.manage().window().setRect({ width: 1460, height: 1080 });
await driver.manage().window().setRect({ width: 1460, height: 1020 });
});

beforeEach(async function () {
Expand Down

0 comments on commit 8235618

Please sign in to comment.