Improvements to tests and from testing

- Moved OP25 start outside of PDAB start callback
- Added more logging
- Set the pdabProcess variable to false when closing the discord client
- Update test variable names
- Added new WIP pdabWrappers tests to test the full wrappers as the client would
This commit is contained in:
Logan Cusano
2024-04-28 03:21:03 -04:00
parent bf69e93e29
commit a353b9adbb
4 changed files with 56 additions and 27 deletions

View File

@@ -120,6 +120,7 @@ export const requestDiscordID = () => {
export const requestDiscordClientClose = () => {
return new Promise((res) => {
io.timeout(25000).emit('request_client_close');
pdabProcess = false;
res();
});
};