From 620facbe275091a6fbd31de946f3df257e633d09 Mon Sep 17 00:00:00 2001 From: jcardozo Date: Mon, 2 Sep 2024 12:52:46 +0200 Subject: [PATCH] Change test script to execute Maven tests with "devbox run test" Replaced the placeholder test script with a command to execute Maven tests. This change ensures that running the "test" script in the development environment will now correctly run all associated Maven tests. --- devbox.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devbox.json b/devbox.json index c61d3fa..908ec09 100644 --- a/devbox.json +++ b/devbox.json @@ -10,7 +10,7 @@ ], "scripts": { "test": [ - "echo \"Error: no test specified\" && exit 1" + "mvn test" ] } }