This commit is contained in:
nuno maduro
2026-05-02 19:20:55 +01:00
parent 65c0fbc528
commit 536d79f765
11 changed files with 12 additions and 5 deletions

View File

@ -0,0 +1,18 @@
<?php
declare(strict_types=1);
namespace Pest\Plugins\Tia\Contracts;
/**
* @internal
*/
interface WatchDefault
{
public function applicable(): bool;
/**
* @return array<string, array<int, string>> pattern → list of project-relative test dirs
*/
public function defaults(string $projectRoot, string $testPath): array;
}