From 7c47dc4e13b95c2511a87969c7ec805dc1fd51db Mon Sep 17 00:00:00 2001 From: Dawid Parafinski Date: Thu, 10 Sep 2026 13:14:25 +0200 Subject: [PATCH 1/2] IBX-12374: Converted the Behat suites to PHP configuration --- behat_suites.php | 23 +++++++++++++++++++++++ behat_suites.yaml | 11 ----------- 2 files changed, 23 insertions(+), 11 deletions(-) create mode 100644 behat_suites.php delete mode 100644 behat_suites.yaml diff --git a/behat_suites.php b/behat_suites.php new file mode 100644 index 0000000..622b2f2 --- /dev/null +++ b/behat_suites.php @@ -0,0 +1,23 @@ +import('../../ibexa/behat/behat_ibexa_headless.php') + ->withProfile((new Profile('browser')) + ->withSuite((new Suite('cloud')) + ->withContexts( + TestContext::class, + AuthenticationContext::class + ) + ->withPaths('%paths.base%/features/browser'))); diff --git a/behat_suites.yaml b/behat_suites.yaml deleted file mode 100644 index 2751013..0000000 --- a/behat_suites.yaml +++ /dev/null @@ -1,11 +0,0 @@ -imports: - - ../../ibexa/behat/behat_ibexa_headless.yaml - -browser: - suites: - cloud: - paths: - - '%paths.base%/features/browser' - contexts: - - Ibexa\Behat\API\Context\TestContext - - Ibexa\Behat\Browser\Context\AuthenticationContext From 1f63818c4d0571fec6d53c940edd8a598c34e9e1 Mon Sep 17 00:00:00 2001 From: Dawid Parafinski Date: Thu, 10 Sep 2026 14:47:02 +0200 Subject: [PATCH 2/2] IBX-12374: Dropped behat_suites.php, no browser-tests workflow wires it in this repo --- behat_suites.php | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 behat_suites.php diff --git a/behat_suites.php b/behat_suites.php deleted file mode 100644 index 622b2f2..0000000 --- a/behat_suites.php +++ /dev/null @@ -1,23 +0,0 @@ -import('../../ibexa/behat/behat_ibexa_headless.php') - ->withProfile((new Profile('browser')) - ->withSuite((new Suite('cloud')) - ->withContexts( - TestContext::class, - AuthenticationContext::class - ) - ->withPaths('%paths.base%/features/browser')));