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
+2 -1
View File
@@ -45,6 +45,7 @@ INSTALLED_APPS = [
"django.contrib.contenttypes",
"django.contrib.sessions",
"django.contrib.staticfiles",
"django_extensions",
"rest_framework",
"corsheaders",
"users",
@@ -106,7 +107,7 @@ NOTE: COOKIE_SAMESITE: Lax is used to allow cross-site redirection, like links
AUTH_COOKIE = {
"NAME": "refresh_token",
"DOMAIN": None,
"SECURE": not DEBUG,
"SECURE": True,
"HTTPONLY": True,
"SAMESITE": "Lax",
}