php-commerce/tests/TestCase.php
Claude 036c85388c
Some checks failed
CI / PHP 8.3 (push) Failing after 2m0s
CI / PHP 8.4 (push) Failing after 2m5s
test: fix TestCase to use Orchestra Testbench for CI
2026-02-23 06:18:30 +00:00

17 lines
291 B
PHP

<?php
declare(strict_types=1);
namespace Tests;
use Orchestra\Testbench\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
protected function getPackageProviders($app): array
{
return [
\Core\Mod\Commerce\Boot::class,
];
}
}