We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f3e106 commit c985c5dCopy full SHA for c985c5d
test/helpers/driver.js
@@ -2,8 +2,12 @@ require('./packager');
2
3
// APPIUM -----------------
4
var child_process = require('child_process');
5
-var appiumProc = child_process.spawn('appium', ['-p', '4724']);
6
-var Promise = require('Promise');
+var appiumProc = child_process.spawn('appium', [
+ '-p', '4724',
7
+ '--default-capabilities', '{"fullReset":true}'
8
+]);
9
+
10
+var Promise = require('Promise');
11
12
var server = {
13
host: 'localhost',
0 commit comments