fcf0888864
Now, if the first pusher request fails, a waiting message will be displayed and the application will reconnect when the pusher comes back alive or the network connection is established again.
16 lines
391 B
JavaScript
16 lines
391 B
JavaScript
const BROWSER = process.env.BROWSER || "chrome --use-fake-ui-for-media-stream --use-fake-device-for-media-stream";
|
|
|
|
module.exports = {
|
|
"browsers": BROWSER,
|
|
"hostname": "localhost",
|
|
//"skipJsErrors": true,
|
|
"src": "tests/",
|
|
"screenshots": {
|
|
"path": "screenshots/",
|
|
"takeOnFails": true,
|
|
"thumbnails": false,
|
|
},
|
|
"assertionTimeout": 10000,
|
|
"selectorTimeout": 20000,
|
|
}
|