system-testing 1.0.10 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/system-test.js +1 -3
package/package.json
CHANGED
package/src/system-test.js
CHANGED
|
@@ -180,8 +180,7 @@ export default class SystemTest {
|
|
|
180
180
|
.setCapability("goog:loggingPrefs", {browser: "ALL"})
|
|
181
181
|
.build()
|
|
182
182
|
|
|
183
|
-
await this.setTimeouts(
|
|
184
|
-
await this.driver.manage().setTimeouts({implicit: 20000, pageLoad: 20000, script: 20000})
|
|
183
|
+
await this.setTimeouts(4000)
|
|
185
184
|
|
|
186
185
|
// Web socket server to communicate with browser
|
|
187
186
|
await this.startWebSocketServer()
|
|
@@ -201,7 +200,6 @@ export default class SystemTest {
|
|
|
201
200
|
// Wait for client to connect
|
|
202
201
|
await this.waitForClientWebSocket()
|
|
203
202
|
|
|
204
|
-
await this.driver.manage().setTimeouts({implicit: 4000, pageLoad: 4000, script: 4000})
|
|
205
203
|
this._started = true
|
|
206
204
|
}
|
|
207
205
|
|