fix(smartproxy): Improve port binding intelligence and ACME challenge route management; update route configuration tests and dependency versions.

This commit is contained in:
2025-05-28 19:58:28 +00:00
parent 4ebaf6c061
commit 742adc2bd9
17 changed files with 948 additions and 1258 deletions

View File

@@ -55,7 +55,8 @@ tap.test('should have error handling around logger calls in route update callbac
expect(true).toEqual(true);
} catch (error) {
// This shouldn't happen if our error handling is working
expect(false).toEqual(true, 'Error handling failed in addChallengeRoute');
// Error handling failed in addChallengeRoute
expect(false).toEqual(true);
}
// Verify that we handle errors in removeChallengeRoute
@@ -69,7 +70,8 @@ tap.test('should have error handling around logger calls in route update callbac
expect(true).toEqual(true);
} catch (error) {
// This shouldn't happen if our error handling is working
expect(false).toEqual(true, 'Error handling failed in removeChallengeRoute');
// Error handling failed in removeChallengeRoute
expect(false).toEqual(true);
}
});