PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.17.0
GiveWP – Donation Plugin and Fundraising Platform v4.17.0
4.17.0 4.16.9 4.16.8.1 4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 All 256 releases
← All changes | playwright.config.ts +7 -2 4.16.9 → 4.17.0 View file →
@@ -17,11 +17,16 @@
17 17 baseURL: WP_BASE_URL,
18 18 // Local environments that terminate TLS in front of wp-env use a self-signed certificate.
19 19 ignoreHTTPSErrors: true,
20 20 storageState: STORAGE_STATE_PATH,
21 - video: 'retain-on-failure',
21 + /*
22 + * retain-on-failure still records every test and discards the passing ones, which costs
23 + * CPU on a runner where WordPress is the bottleneck. on-first-retry records only the rerun
24 + * of a test that already failed, and CI retries twice, so failures still ship a video and trace.
25 + */
26 + video: 'on-first-retry',
22 27 screenshot: 'only-on-failure',
23 - trace: 'retain-on-failure',
28 + trace: 'on-first-retry',
24 29 },
25 30 projects: [
26 31 {
27 32 name: 'chromium',