11 lines
356 B
PHP
11 lines
356 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
// Base URL for browser tests — http://app when running in compose.test.yaml
|
||
|
|
define('BASE_URL', rtrim((string) getenv('APP_URL') ?: 'http://app', '/'));
|
||
|
|
|
||
|
|
// Path to custom/ source — /app/custom in container (mounted via compose.test.yaml)
|
||
|
|
define('CUSTOM_DIR', __DIR__ . '/../custom');
|
||
|
|
|
||
|
|
// Group all Unit tests
|
||
|
|
uses()->group('unit')->in('Unit');
|