Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kclark-scottlogic committed Feb 13, 2024
1 parent ae12363 commit b47cd74
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions backend/src/controller/testController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@ import { handleAddInfoToChatHistory } from '@src/controller/chatController';
import { OpenAiAddInfoToChatHistoryRequest } from '@src/models/api/OpenAiAddInfoToChatHistoryRequest';

function handleTest(req: OpenAiAddInfoToChatHistoryRequest, res: Response) {
let num = 0
for(let x=0; x<= 1000000; x++)
{
num = num++;
}
handleAddInfoToChatHistory(req, res);
let num = 0;
for (let x = 0; x <= 1000000; x++) {
num = num++;
}
handleAddInfoToChatHistory(req, res);
}
export { handleTest };

0 comments on commit b47cd74

Please sign in to comment.