Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion wdio.conf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,19 @@ export const config: WebdriverIO.Config = {
// Services take over a specific job you don't want to take care of. They enhance
// your test setup with almost no effort. Unlike plugins, they don't add new
// commands. Instead, they hook themselves up into the test process.
services: ['appium'],
services: [
[
'appium',
{
// Keep Appium deterministic in CI and persist logs for artifacts.
args: {
address: '127.0.0.1',
port: 4723,
},
logPath: path.join(__dirname, 'artifacts', 'appium'),
},
],
],

// Framework you want to run your specs with.
// The following are supported: Mocha, Jasmine, and Cucumber
Expand Down