Can I use dbt to generate a unit test query without running that unit test query ??

Hi, I am looking for an easy way to generate UNIT test queries, in the same way as dbt does when it is instructed to run a unit test.

When I instruct dbt to run a unit test, I see that in the background dbt generates a test query named test_model_name.sql in the folder: $dbt_PROJECT_DIR/target/compiled/my_project/models/enriched/model_name.yml/models/enriched/. Obviously, when dbt is asked to run a unit test, it runs the query test_model_name.sql immediately after it is generated. The latter is what I would like to avoid.

So, is there an easy way (preferably from the command line) to instruct dbt to create a test query like $dbt_PROJECT_DIR/target/compiled/my_project/models/enriched/model_name.yml/models/enriched/test_model_name.sql without actually running it?