5b1b66ac51
* Fixes random failures in interactive test runner. * Introduces test retries, what we did with an own script so far. Change-Id: Iab5c32e854618a694e7d10d3c92c1c6c32465983 Reviewed-on: https://gerrit.libreoffice.org/c/online/+/102991 Tested-by: Tamás Zolnai <tamas.zolnai@collabora.com> Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
11 lines
189 B
JavaScript
11 lines
189 B
JavaScript
/* global require Cypress */
|
|
|
|
require('cypress-failed-log');
|
|
|
|
if (Cypress.env('INTEGRATION') === 'php-proxy') {
|
|
Cypress.Server.defaults({
|
|
ignore: function() {
|
|
return true;
|
|
}
|
|
});
|
|
}
|