summaryrefslogtreecommitdiff
path: root/cli/tests/integration/run_tests.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-01-26 16:41:16 +0100
committerGitHub <noreply@github.com>2024-01-26 16:41:16 +0100
commit9e0495baa7565737b8f1d66348b45bbed14831e0 (patch)
tree34bdb85953a4821b8f66bd08874fb8147f931d6b /cli/tests/integration/run_tests.rs
parentc66f7b6d8d1d7481eee91d9ff898fd4eaddfdeea (diff)
fix: make deprecation warnings less verbose (#22128)
This commit makes deprecation warnings less verbose by default. Only a single warnings is issued per deprecated API use. `DENO_VERBOSE_WARNINGS` env var can be provided to enable more detailed logging for each use of API including a stack trace. https://github.com/denoland/deno/assets/13602871/9c036c84-0044-4cb6-9c8e-deb641f43712
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r--cli/tests/integration/run_tests.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs
index b8acce94d..b4ce77f0c 100644
--- a/cli/tests/integration/run_tests.rs
+++ b/cli/tests/integration/run_tests.rs
@@ -5099,6 +5099,14 @@ itest!(warn_on_deprecated_api {
exit_code: 0,
});
+itest!(warn_on_deprecated_api_verbose {
+ args: "run -A run/warn_on_deprecated_api/main.js",
+ output: "run/warn_on_deprecated_api/main.verbose.out",
+ envs: vec![("DENO_VERBOSE_WARNINGS".to_string(), "1".to_string())],
+ http_server: true,
+ exit_code: 0,
+});
+
itest!(warn_on_deprecated_api_with_flag {
args: "run -A --quiet run/warn_on_deprecated_api/main.js",
output: "run/warn_on_deprecated_api/main_disabled_flag.out",