diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 30c767b366c35b6780d901110d0ad7346abfb832..37c4d43d82bff27170b9c29b2489bef894b06410 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 88c686048fa70529f7430f5404a3a8fd786eb3db..e160b1a5b4f45275ae7dd6c4f29d49ffa4f5d8fc 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