This is an automated email from the ASF dual-hosted git repository. andytaylor pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/artemis-console.git
commit 01ab7868880754c031a4d151c9209c9318243140 Author: Domenico Francesco Bruscino <[email protected]> AuthorDate: Mon Mar 23 11:21:24 2026 +0100 no jira - run Jest tests during the Maven test phase --- artemis-console-extension/artemis-extension/package.json | 1 + artemis-console-extension/pom.xml | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/artemis-console-extension/artemis-extension/package.json b/artemis-console-extension/artemis-extension/package.json index c17ab60..19d0e8f 100644 --- a/artemis-console-extension/artemis-extension/package.json +++ b/artemis-console-extension/artemis-extension/package.json @@ -10,6 +10,7 @@ ], "scripts": { "build": "yarn workspaces foreach -Aipt run build", + "test": "yarn workspaces foreach -Aipt run test", "license": "yarn licenses generate-disclaimer -R > ../../artemis-console-distribution/src/main/resources/licenses/licenses/NPMLicenses.txt" }, "resolutions": { diff --git a/artemis-console-extension/pom.xml b/artemis-console-extension/pom.xml index c760298..94e8179 100644 --- a/artemis-console-extension/pom.xml +++ b/artemis-console-extension/pom.xml @@ -78,6 +78,16 @@ <arguments>yarn build</arguments> </configuration> </execution> + <execution> + <id>yarn test</id> + <goals> + <goal>corepack</goal> + </goals> + <phase>test</phase> + <configuration> + <arguments>yarn test</arguments> + </configuration> + </execution> </executions> </plugin> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
