chore(tests): BATCH 0 - agregar Permiso y RolPermiso a TablesToIgnore [UDT-005]

This commit is contained in:
2026-04-15 15:26:19 -03:00
parent 4d3e55c422
commit f6ad371de4

View File

@@ -30,7 +30,13 @@ public sealed class SqlTestFixture : IAsyncLifetime
{ {
DbAdapter = DbAdapter.SqlServer, DbAdapter = DbAdapter.SqlServer,
// Rol is a lookup table seeded by migration V003 — never wipe or Usuario FK breaks. // Rol is a lookup table seeded by migration V003 — never wipe or Usuario FK breaks.
TablesToIgnore = [new Respawn.Graph.Table("dbo", "Rol")] // Permiso and RolPermiso are seeded by V005/V006 — never wipe or integration tests lose the permission catalog.
TablesToIgnore =
[
new Respawn.Graph.Table("dbo", "Rol"),
new Respawn.Graph.Table("dbo", "Permiso"),
new Respawn.Graph.Table("dbo", "RolPermiso"),
]
}); });
await ResetAndSeedAsync(); await ResetAndSeedAsync();