From fd2c369f7b6b05018ec9bf1985404431f256401e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 19 May 2026 10:21:51 +0000 Subject: [PATCH] test(notifications-backend): increase router test timeout for DB teardown Agent-Logs-Url: https://github.com/backstage/backstage/sessions/7f504e1c-86b2-4d51-add3-6fb873dfe222 --- plugins/notifications-backend/src/service/router.test.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/notifications-backend/src/service/router.test.ts b/plugins/notifications-backend/src/service/router.test.ts index 4ea63a9554..aabf0b99af 100644 --- a/plugins/notifications-backend/src/service/router.test.ts +++ b/plugins/notifications-backend/src/service/router.test.ts @@ -35,6 +35,8 @@ import { DatabaseService } from '@backstage/backend-plugin-api'; import { randomUUID as uuid } from 'node:crypto'; import { DatabaseNotificationsStore, generateSettingsHash } from '../database'; +jest.setTimeout(60_000); + const databases = TestDatabases.create(); let store: DatabaseNotificationsStore;