This is an automated email from the ASF dual-hosted git repository. jonnybot pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/groovy-geb.git
commit 4abec4bfcad3f03991945044196000466d7731c5 Author: Carl Marcum <[email protected]> AuthorDate: Sat Mar 28 18:38:07 2026 -0400 add firefox as default geb.env for integrationTest --- integration/geb-testcontainers/geb-testcontainers.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/geb-testcontainers/geb-testcontainers.gradle b/integration/geb-testcontainers/geb-testcontainers.gradle index 11c18aa8..557d8807 100644 --- a/integration/geb-testcontainers/geb-testcontainers.gradle +++ b/integration/geb-testcontainers/geb-testcontainers.gradle @@ -100,7 +100,7 @@ tasks.register('integrationTest', Test) { events 'passed', 'skipped', 'failed' } - systemProperty('geb.env', System.getProperty('geb.env')) + systemProperty('geb.env', System.getProperty('geb.env') ?: 'firefox') systemProperty('geb.container.recording.mode', 'RECORD_ALL') // also RECORD_FAILING // systemProperty('geb.container.recording.restartPerTest', 'false') // makes all recording the same }
