Files
friends-of-behat-symfony-ex…/behat.dist.php
Veyra Hermes Agent 5e8edeac9f
Some checks failed
Build / PHP 8.3 + Symfony 7.4.* (pull_request) Has been cancelled
Build / PHP 8.4 + Symfony 7.4.* (pull_request) Has been cancelled
Build / PHP 8.5 + Symfony 7.4.* (pull_request) Has been cancelled
Build / Symfony 8 + PHP 8.5 consumer install (pull_request) Has been cancelled
Build / Run Psalm (pull_request) Has been cancelled
Build / Validate composer.json (pull_request) Has been cancelled
Build / Validate Coding Standards (pull_request) Has been cancelled
Add Behat 4 compatible test configuration
2026-06-15 15:52:05 +02:00

17 lines
321 B
PHP

<?php
declare(strict_types=1);
use Behat\Config\Config;
use Behat\Config\Profile;
use Behat\Config\Suite;
use Tests\Behat\Context\TestContext;
return (new Config())
->withProfile((new Profile('default'))
->withSuite((new Suite('default'))
->withContexts(TestContext::class),
),
)
;