-
-
Notifications
You must be signed in to change notification settings - Fork 261
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add TestingBot example * update testingbot config * use spaces * Update config/testingbot/wdio.android.tb.app.conf.ts Co-authored-by: Christian Bromann <[email protected]> --------- Co-authored-by: Christian Bromann <[email protected]>
- Loading branch information
1 parent
3a32030
commit c788332
Showing
3 changed files
with
60 additions
and
0 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
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,41 @@ | ||
import { config as baseConfig } from '../wdio.shared.conf'; | ||
|
||
export const config: WebdriverIO.Config = { | ||
...baseConfig, | ||
|
||
// ============ | ||
// Specs | ||
// ============ | ||
specs: [ | ||
'./tests/specs/**/app*.spec.ts', | ||
], | ||
exclude: [ | ||
// Exclude this one because the test can only be executed on emulators/simulators | ||
'./tests/specs/**/app.biometric.login.spec.ts', | ||
], | ||
|
||
// ============================= | ||
// TestingBot specific config | ||
// ============================= | ||
// User configuration | ||
user: process.env.TESTINGBOT_KEY || 'TESTINGBOT_KEY', | ||
key: process.env.TESTINGBOT_SECRET || 'TESTINGBOT_SECRET', | ||
// Use testingbot service | ||
services: ['testingbot'], | ||
|
||
// ============ | ||
// Capabilities | ||
// ============ | ||
// For all capabilities please check | ||
// http://appium.io/docs/en/writing-running-appium/caps/#general-capabilities | ||
capabilities: [ | ||
{ | ||
// Set URL of the application under test | ||
app: 'https://testingbot.com/appium/sample.apk', | ||
|
||
deviceName: 'Pixel 6', | ||
platformName: 'Android', | ||
version: '12.0', | ||
}, | ||
], | ||
}; |
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