Updated frontend

This commit is contained in:
2026-07-01 11:10:09 -04:00
parent ee21bdbf22
commit 5644bfa5ec
8104 changed files with 14976 additions and 386337 deletions
+20
View File
@@ -0,0 +1,20 @@
'use strict';
// Flush all test-prefix Redis keys before each test run so state is always clean.
// Uses model-redis's own bundled redis client since redis is not a top-level dep.
const { createClient } = require('../node_modules/model-redis/node_modules/redis');
module.exports = async function() {
const client = createClient();
await client.connect();
const keys = await client.keys('sso_manager_test_*');
if (keys.length) {
await client.del(keys);
console.log(`[globalSetup] Flushed ${keys.length} test Redis key(s).`);
} else {
console.log('[globalSetup] No test Redis keys to flush.');
}
await client.quit();
};