From 353bcc1611bb7a2a1a524437f91bc9191baa0714 Mon Sep 17 00:00:00 2001 From: khalilou88 Date: Sun, 19 Nov 2023 23:58:53 +0100 Subject: [PATCH] test: fix quarkus smoke test --- .../jnxplus-smoke/tests/nx-maven/quarkus.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testing-projects/jnxplus-smoke/tests/nx-maven/quarkus.spec.ts b/testing-projects/jnxplus-smoke/tests/nx-maven/quarkus.spec.ts index a4e568892..d0c72b5a7 100644 --- a/testing-projects/jnxplus-smoke/tests/nx-maven/quarkus.spec.ts +++ b/testing-projects/jnxplus-smoke/tests/nx-maven/quarkus.spec.ts @@ -103,17 +103,17 @@ describe('nx-maven quarkus smoke', () => { ); execSync( - `npx nx g @jnxplus/nx-maven:application ${testApp5} --parentProject ${appsParentProject} --framework micronaut --language kotlin`, + `npx nx g @jnxplus/nx-maven:application ${testApp5} --parentProject ${appsParentProject} --framework quarkus --language kotlin`, execSyncOptions(), ); execSync( - `npx nx g @jnxplus/nx-maven:application ${testApp6} --parentProject ${appsParentProject} --framework micronaut --language kotlin`, + `npx nx g @jnxplus/nx-maven:application ${testApp6} --parentProject ${appsParentProject} --framework quarkus --language kotlin`, execSyncOptions(), ); execSync( - `npx nx g @jnxplus/nx-maven:lib ${testLib5} --parentProject ${libsParentProject} --framework micronaut --language kotlin --projects ${testApp5},${testApp6}`, + `npx nx g @jnxplus/nx-maven:lib ${testLib5} --parentProject ${libsParentProject} --framework quarkus --language kotlin --projects ${testApp5},${testApp6}`, execSyncOptions(), );