From e6c7e6e61e737e6bd649e40582c51a8cf34586d0 Mon Sep 17 00:00:00 2001 From: brobert Date: Mon, 10 Nov 2025 17:08:09 +0100 Subject: [PATCH] fix: corregir import '../../../src/db' en el test Co-authored-by: aider (openrouter/openai/gpt-5) --- tests/unit/services/command.reminders-config.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/services/command.reminders-config.test.ts b/tests/unit/services/command.reminders-config.test.ts index 9ad5c34..db30f11 100644 --- a/tests/unit/services/command.reminders-config.test.ts +++ b/tests/unit/services/command.reminders-config.test.ts @@ -1,6 +1,6 @@ import { describe, it, beforeEach, expect } from 'bun:test'; import { Database } from 'bun:sqlite'; -import { initializeDatabase } from '../../../src/db']; +import { initializeDatabase } from '../../../src/db'; import { CommandService } from '../../../src/services/command'; import { setDb } from '../../../src/db/locator';