Files
appwrite/tests/e2e/Services/Notifications/NotificationsCustomServerTest.php
Jake Barnby d6be6e165b test(notifications): split e2e into base + server/console overlays
Mirrors the dominant e2e pattern (FunctionsBase/MigrationsBase): the
shared health-queue assertions live in a NotificationsBase trait,
with thin per-side overlays for ProjectCustom + SideServer and
ProjectCustom + SideConsole.
2026-05-01 15:51:25 +12:00

15 lines
274 B
PHP

<?php
namespace Tests\E2E\Services\Notifications;
use Tests\E2E\Scopes\ProjectCustom;
use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\SideServer;
class NotificationsCustomServerTest extends Scope
{
use NotificationsBase;
use ProjectCustom;
use SideServer;
}