- replace bearer auth with session+CSRF flow and add admin user directory - update frontend moderation flow, force password change gate, and new CLI - refresh changelog/docs/feature plan + ensure swagger dev experience
51 lines
942 B
JavaScript
51 lines
942 B
JavaScript
const request = require('supertest');
|
|
|
|
/**
|
|
* Get supertest request instance
|
|
* Uses globally initialized server from globalSetup.js
|
|
*/
|
|
let cachedAgent = null;
|
|
|
|
function getApp() {
|
|
const app = global.__TEST_APP__;
|
|
if (!app) {
|
|
throw new Error(
|
|
'Test server not initialized. This should be handled by globalSetup.js automatically.'
|
|
);
|
|
}
|
|
return app;
|
|
}
|
|
|
|
function getRequest() {
|
|
return request(getApp());
|
|
}
|
|
|
|
function getAgent() {
|
|
if (!cachedAgent) {
|
|
cachedAgent = request.agent(getApp());
|
|
}
|
|
return cachedAgent;
|
|
}
|
|
|
|
/**
|
|
* Legacy compatibility - these are now no-ops
|
|
* Server is initialized globally
|
|
*/
|
|
async function setupTestServer() {
|
|
return {
|
|
app: global.__TEST_APP__,
|
|
serverInstance: global.__TEST_SERVER__
|
|
};
|
|
}
|
|
|
|
async function teardownTestServer() {
|
|
// No-op - cleanup happens in globalTeardown.js
|
|
}
|
|
|
|
module.exports = {
|
|
setupTestServer,
|
|
teardownTestServer,
|
|
getRequest,
|
|
getAgent
|
|
};
|