mirror of
https://github.com/pestphp/pest.git
synced 2026-03-11 02:07:23 +01:00
fix missing datasets when defined in Pest.php file
This commit is contained in:
@ -4,6 +4,8 @@ declare(strict_types=1);
|
||||
|
||||
namespace Pest\Support;
|
||||
|
||||
use function Pest\testDirectory;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
@ -25,6 +27,10 @@ final class DatasetInfo
|
||||
|
||||
public static function scope(string $file): string
|
||||
{
|
||||
if (Str::endsWith($file, testDirectory('Pest.php'))) {
|
||||
return dirname($file);
|
||||
}
|
||||
|
||||
if (self::isInsideADatasetsDirectory($file)) {
|
||||
return dirname($file, 2);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user