diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index fc1f17b43dcd539ddef90e8b9c858fdbc17e550f..de5107a322e0423341cc9a6bf6343254125d3849 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -55,7 +55,7 @@ cache_lint_test:
     - deno cache --allow-import --lock=deno.lock app/deps.ts app/dev_deps.ts
     - deno fmt --check
     - deno lint
-    - deno test
+    - deno test --allow-import 
 
 # You can override the included template(s) by including variable overrides
 # SAST customization: https://docs.gitlab.com/ee/user/application_security/sast/#customizing-the-sast-settings
diff --git a/deno.json b/deno.json
index 24227a802fdc058415fef527935bb27f3aa790c0..eb925b33f33df270382a3f57d30b4d3b9a492206 100644
--- a/deno.json
+++ b/deno.json
@@ -4,7 +4,7 @@
       "lint": "deno lint",
       "fmt": "deno fmt",
       "fmt:check": "deno fmt --check",
-      "test": "deno test",
+      "test": "deno test --allow-import ",
       "updateDeps": "deno cache --allow-import --lock=deno.lock --lock-write app/deps.ts app/dev_deps.ts",
       "install": "deno cache --allow-import --reload --lock=deno.lock app/deps.ts app/dev_deps.ts",
       "cache": "deno cache --allow-import app/main.ts",
@@ -26,4 +26,4 @@
       "*.md"
     ]
   }
-}
+}
\ No newline at end of file