diff --git a/src/test/helm/deployment_env_test.yaml b/src/test/helm/deployment_env_test.yaml
index 6995a43486fe9f0096d67311f5d7fcffed5ece40..53d48ba589b3cbffac4bdd859788565d1e87e848 100644
--- a/src/test/helm/deployment_env_test.yaml
+++ b/src/test/helm/deployment_env_test.yaml
@@ -77,4 +77,16 @@ tests:
     asserts:
       - equal:
           path: spec.template.spec.containers[0].env
-          value: null
\ No newline at end of file
+          value: null
+
+  - it: should by default not have ACTIVE_PROFILE env
+    set:
+      env.customList:
+        my_test_environment_name: "A test value"
+    asserts:
+      - notContains:
+          path: spec.template.spec.containers[0].env
+          content: 
+            name: ACTIVE_PROFILE
+          any: true
+ 
\ No newline at end of file