-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
daily job running mobile example on real devices
- Loading branch information
Showing
9 changed files
with
4,938 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
node_modules/ | ||
/test-results/ | ||
/playwright-report/ | ||
/playwright/.cache/ | ||
screenshot.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
exports.config = { | ||
user: process.env.BROWSERSTACK_USERNAME, | ||
key: process.env.BROWSERSTACK_ACCESS_KEY, | ||
|
||
updateJob: false, | ||
specs: [ | ||
'./specs/screenshot.js' | ||
], | ||
exclude: [], | ||
|
||
capabilities: [{ | ||
project: "Bevy Example", | ||
build: 'Bevy Example Runner', | ||
name: 'run_example', | ||
device: process.env.DEVICE || 'Samsung Galaxy S23', | ||
os_version: process.env.OS_VERSION || "13.0", | ||
app: process.env.BROWSERSTACK_APP_ID, | ||
'browserstack.debug': true, | ||
orientation: 'LANDSCAPE' | ||
}], | ||
|
||
logLevel: 'info', | ||
coloredLogs: true, | ||
screenshotPath: './screenshots/', | ||
baseUrl: '', | ||
waitforTimeout: 10000, | ||
connectionRetryTimeout: 90000, | ||
connectionRetryCount: 3, | ||
|
||
framework: 'mocha', | ||
mochaOpts: { | ||
ui: 'bdd', | ||
timeout: 20000 | ||
} | ||
}; |
Oops, something went wrong.