From 5f0b1f5e4d4ac59b5f10618beecce5edf896a01b Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Thu, 1 Jan 2026 17:06:29 +0100 Subject: [PATCH] improve naming for migration tests --- test/backend-test/test-migration.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/backend-test/test-migration.js b/test/backend-test/test-migration.js index 19b00dad7..0ed494fae 100644 --- a/test/backend-test/test-migration.js +++ b/test/backend-test/test-migration.js @@ -4,7 +4,7 @@ const path = require("path"); const { GenericContainer, Wait } = require("testcontainers"); describe("Database Migration", () => { - test("SQLite: All migrations run successfully", async () => { + test("SQLite migrations run successfully from fresh database", async () => { const testDbPath = path.join(__dirname, "../../data/test-migration.db"); const testDbDir = path.dirname(testDbPath); @@ -57,7 +57,7 @@ describe("Database Migration", () => { }); test( - "MariaDB: All migrations run successfully", + "MariaDB migrations run successfully from fresh database", { skip: !!process.env.CI &&