@@ -74,7 +74,7 @@ describe('Project generation tests', function() {
7474 * default values for the groupId, artifactId etc.
7575 */
7676 it ( 'should have correct default values when going through the wizard' , async function ( ) {
77- this . timeout ( 30000 ) ;
77+ this . timeout ( 60000 ) ;
7878 const wizard : ProjectGenerationWizard = await ProjectGenerationWizard . openWizard ( driver ) ;
7979
8080 expect ( await wizard . getNthQuickPickItemLabel ( 0 ) , 'default should be Maven' ) . equals ( 'Maven' ) ;
@@ -122,7 +122,7 @@ describe('Project generation tests', function() {
122122 * step values at the wizard's title bar: (1/8), (2/8)
123123 */
124124 it ( 'should have correct step values' , async function ( ) {
125- this . timeout ( 30000 ) ;
125+ this . timeout ( 60000 ) ;
126126 const wizard : ProjectGenerationWizard = await ProjectGenerationWizard . openWizard ( driver ) ;
127127 expect ( await wizard . getInputBoxTitle ( ) ) . to . have . string ( '1/8' ) ;
128128 expect ( await wizard . getBackButton ( ) ) . to . not . be . ok ;
@@ -186,7 +186,7 @@ describe('Project generation tests', function() {
186186 * Quarkus Maven project with some extensions added
187187 */
188188 it ( 'should generate Maven project with extensions added' , async function ( ) {
189- this . timeout ( 80000 ) ;
189+ this . timeout ( 360000 ) ;
190190
191191 const projectDestDir : string = path . join ( tempDir , 'maven' ) ;
192192 const projectFolderName : string = 'quarkus-maven' ;
@@ -224,7 +224,7 @@ describe('Project generation tests', function() {
224224 * Quarkus Gradle project with some extensions added
225225 */
226226 it ( 'should generate Gradle project with extensions added' , async function ( ) {
227- this . timeout ( 80000 ) ;
227+ this . timeout ( 480000 ) ;
228228
229229 const projectDestDir : string = path . join ( tempDir , 'gradle' ) ;
230230 const projectFolderName : string = 'quarkus-gradle' ;
@@ -262,7 +262,7 @@ describe('Project generation tests', function() {
262262 * the previously generated project's values
263263 */
264264 it ( 'should display input values from previously generated project (with extensions)' , async function ( ) {
265- this . timeout ( 80000 ) ;
265+ this . timeout ( 360000 ) ;
266266
267267 const projectDestDir : string = path . join ( tempDir , 'previous-values-extensions' ) ;
268268
0 commit comments