diff --git a/tests/Pest.php b/tests/Pest.php index 95410a39..32370230 100644 --- a/tests/Pest.php +++ b/tests/Pest.php @@ -5,10 +5,8 @@ declare(strict_types=1); namespace Flextype; define('ROOT_DIR', str_replace(DIRECTORY_SEPARATOR, '/', getcwd())); -define('PATH', [ - 'project' => ROOT_DIR . '/project', - 'tmp' => ROOT_DIR . '/var/tmp', -]); +define('PATH_PROJECT', ROOT_DIR . '/project'); +define('PATH_TMP', ROOT_DIR . '/var/tmp'); ! is_file($flextype_autoload = ROOT_DIR . '/vendor/autoload.php') and exit('Please run: composer install for flextype'); $flextype_loader = require_once $flextype_autoload;