Skip to content

Commit

Permalink
concurrently adjusts
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima committed Sep 13, 2024
1 parent 6ea3817 commit d03312f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions generators/server/generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -536,10 +536,10 @@ Hibernate JPA 2 Metamodel does not work with Bean Validation 2 for LOB fields, s
if (this.jhipsterConfig.testFrameworks?.includes('cypress')) {
scriptsStorage.set({
'pree2e:headless': 'npm run ci:server:await',
'ci:e2e:run': 'concurrently -k -s first "npm run ci:e2e:server:start" "npm run e2e:headless"',
'ci:e2e:dev': `concurrently -k -s first "./${buildCmd}" "npm run e2e:headless"`,
'e2e:dev': `concurrently -k -s first "./${buildCmd}" "npm run e2e"`,
'e2e:devserver': `concurrently -k -s first "npm run backend:start" "npm start" "wait-on -t ${WAIT_TIMEOUT} http-get://127.0.0.1:9000 && npm run e2e:headless -- -c baseUrl=http://localhost:9000"`,
'ci:e2e:run': 'concurrently -k -s first --names application,e2e -c red,blue ci:e2e:server:start e2e:headless',
'ci:e2e:dev': `concurrently -k -s first --names application,e2e -c red,blue "./${buildCmd}" e2e:headless`,
'e2e:dev': `concurrently -k -s first --names application,e2e -c red,blue "./${buildCmd}" e2e`,
'e2e:devserver': `concurrently -k -s first --names backend,frontend,e2e -c red,yellow,blue backend:start start "wait-on -t ${WAIT_TIMEOUT} http-get://127.0.0.1:9000 && npm run e2e:headless -- -c baseUrl=http://localhost:9000"`,
});
}
},
Expand Down

0 comments on commit d03312f

Please sign in to comment.