Understanding deno test Behavior with Interdependent Modules
I'm seeking clarification on how Deno's test runner (deno test) manages interdependent modules. Consider the following module dependencies:
Module A depends on Module B
Module B depends on Module C
If I execute deno test for Module A, will the test runner automatically execute the test cases for Modules B and C, given their dependency chain?
If this automatic execution isn't currently supported, are there any plans to implement such a feature in future releases?
If this functionality is not available and there are no existing plans to include it, would it be appropriate for me to submit a feature request or open an issue to discuss its potential implementation?
Thank you for your insights.
Module A depends on Module B
Module B depends on Module C
If I execute deno test for Module A, will the test runner automatically execute the test cases for Modules B and C, given their dependency chain?
If this automatic execution isn't currently supported, are there any plans to implement such a feature in future releases?
If this functionality is not available and there are no existing plans to include it, would it be appropriate for me to submit a feature request or open an issue to discuss its potential implementation?
Thank you for your insights.
