1
0
mirror of https://github.com/php/pie.git synced 2026-03-24 07:22:17 +01:00
Files
archived-pie/behat.php
2024-12-20 13:19:58 +01:00

21 lines
469 B
PHP

<?php
declare(strict_types=1);
use Behat\Config\Config;
use Behat\Config\Filter\TagFilter;
use Behat\Config\Profile;
use Behat\Config\Suite;
use Php\PieBehaviourTest\CliContext;
$profile = (new Profile('default'))
->withSuite(
(new Suite('default'))
->withContexts(CliContext::class)
->withPaths('%paths.base%/features')
->withFilter(new TagFilter('~@wip')),
);
return (new Config())
->withProfile($profile);