Fix linting errors in security test

Co-authored-by: samanhappy <2755122+samanhappy@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-11-23 06:52:08 +00:00
parent 68c454b4b6
commit fd3972bda2

View File

@@ -33,9 +33,9 @@ import { cleanupAllServers } from '../../src/services/mcpService.js';
import { McpSettings, IUser } from '../../src/types/index.js'; import { McpSettings, IUser } from '../../src/types/index.js';
describe('Authentication Bypass Security Tests', () => { describe('Authentication Bypass Security Tests', () => {
let appServer: AppServer; let _appServer: AppServer;
let httpServer: Server; let httpServer: Server;
let baseURL: string; let _baseURL: string;
let testServerHelper: TestServerHelper; let testServerHelper: TestServerHelper;
// Test users defined in settings // Test users defined in settings
@@ -107,9 +107,9 @@ describe('Authentication Bypass Security Tests', () => {
testServerHelper = new TestServerHelper(); testServerHelper = new TestServerHelper();
const result = await testServerHelper.createTestServer(settings); const result = await testServerHelper.createTestServer(settings);
appServer = result.appServer; _appServer = result.appServer;
httpServer = result.httpServer; httpServer = result.httpServer;
baseURL = result.baseURL; _baseURL = result.baseURL;
}, 60000); }, 60000);
afterAll(async () => { afterAll(async () => {