feat: update E2E testing configuration to use ssl

This commit is contained in:
ramvignesh-b
2026-04-16 04:26:29 +05:30
parent cc8e3e4e4e
commit b08d505a5a
13 changed files with 249 additions and 36 deletions
+1
View File
@@ -34,6 +34,7 @@ class AuthTests(APITestCase):
self.assertIn(cookie_name, response.cookies)
self.assertTrue(response.cookies[cookie_name].value)
self.assertTrue(response.cookies[cookie_name].httponly)
self.assertTrue(response.cookies[cookie_name].secure)
self.assertEqual(response.cookies[cookie_name]["samesite"], "Lax")