fix: DockerSecretsResolver - don't normalize absolute paths like /var/www/html/...
Some checks failed
Deploy Application / deploy (push) Has been cancelled
Some checks failed
Deploy Application / deploy (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Tests\Unit\Framework\LiveComponents\Middleware;
|
||||
|
||||
use App\Framework\LiveComponents\Middleware\ComponentMiddlewareInterface;
|
||||
use App\Framework\LiveComponents\ValueObjects\ComponentUpdate;
|
||||
use App\Framework\LiveComponents\ValueObjects\LiveComponentState;
|
||||
use Tests\Unit\Framework\LiveComponents\Middleware\TestMiddleware1;
|
||||
|
||||
it('can create middleware', function () {
|
||||
$order = [];
|
||||
$middleware = new TestMiddleware1($order);
|
||||
|
||||
expect($middleware)->toBeInstanceOf(ComponentMiddlewareInterface::class);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user