Fix tests not running

This commit is contained in:
Matej Bačo
2026-04-22 12:01:42 +02:00
parent 7578b5644c
commit 355d4323fc
2 changed files with 28 additions and 0 deletions
@@ -0,0 +1,14 @@
<?php
namespace Tests\E2E\Services\Project;
use Tests\E2E\Scopes\ProjectCustom;
use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\SideConsole;
class MockPhonesConsoleClientTest extends Scope
{
use MockPhonesBase;
use ProjectCustom;
use SideConsole;
}
@@ -0,0 +1,14 @@
<?php
namespace Tests\E2E\Services\Project;
use Tests\E2E\Scopes\ProjectCustom;
use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\SideServer;
class MockPhonesCustomServerTest extends Scope
{
use MockPhonesBase;
use ProjectCustom;
use SideServer;
}