improve naming for migration tests

This commit is contained in:
Frank Elsinga 2026-01-01 17:06:29 +01:00
parent 31285004ba
commit 5f0b1f5e4d

View File

@ -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 &&