Skip to content

Commit

Permalink
test: fix quarkus smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
khalilou88 committed Nov 19, 2023
1 parent c538de4 commit 353bcc1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions testing-projects/jnxplus-smoke/tests/nx-maven/quarkus.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
);

Expand Down

0 comments on commit 353bcc1

Please sign in to comment.