Files
pest/src/Pest.php
T
2026-07-17 16:33:29 +01:00

16 lines
229 B
PHP

<?php
declare(strict_types=1);
namespace Pest;
function version(): string
{
return '4.7.6';
}
function testDirectory(string $file = ''): string
{
return TestSuite::getInstance()->testPath.DIRECTORY_SEPARATOR.$file;
}