@@ -69,7 +69,7 @@ describe('Application settings page - site header section', function () {
6969 } ;
7070
7171 // Find and activate Microting Items Planning Plugin
72- for ( let i = 0 ; i < 10 ; i ++ ) {
72+ for ( let i = 1 ; i < 10 ; i ++ ) {
7373 const plugin = await pluginPage . getPluginRowObjByIndex ( i ) ;
7474 if ( plugin . name === 'Microting Items Planning Plugin' ) {
7575 await activatePlugin ( i , plugin . name ) ;
@@ -78,7 +78,7 @@ describe('Application settings page - site header section', function () {
7878 }
7979
8080 // Find and activate Microting Time Planning Plugin
81- for ( let i = 0 ; i < 10 ; i ++ ) {
81+ for ( let i = 1 ; i < 10 ; i ++ ) {
8282 const plugin = await pluginPage . getPluginRowObjByIndex ( i ) ;
8383 if ( plugin . name === 'Microting Time Planning Plugin' ) {
8484 await activatePlugin ( i , plugin . name ) ;
@@ -87,7 +87,7 @@ describe('Application settings page - site header section', function () {
8787 }
8888
8989 // Find and activate Microting Backend Configuration Plugin
90- for ( let i = 0 ; i < 10 ; i ++ ) {
90+ for ( let i = 1 ; i < 10 ; i ++ ) {
9191 const plugin = await pluginPage . getPluginRowObjByIndex ( i ) ;
9292 if ( plugin . name === 'Microting Backend Configuration Plugin' ) {
9393 await activatePlugin ( i , plugin . name ) ;
@@ -96,23 +96,23 @@ describe('Application settings page - site header section', function () {
9696 }
9797
9898 // Verify all plugins are activated
99- for ( let i = 0 ; i < 10 ; i ++ ) {
99+ for ( let i = 1 ; i < 10 ; i ++ ) {
100100 const plugin = await pluginPage . getPluginRowObjByIndex ( i ) ;
101101 if ( plugin . name === 'Microting Items Planning Plugin' ) {
102102 await checkPluginStatus ( i , 'toggle_on' , plugin . name ) ;
103103 break ;
104104 }
105105 }
106106
107- for ( let i = 0 ; i < 10 ; i ++ ) {
107+ for ( let i = 1 ; i < 10 ; i ++ ) {
108108 const plugin = await pluginPage . getPluginRowObjByIndex ( i ) ;
109109 if ( plugin . name === 'Microting Time Planning Plugin' ) {
110110 await checkPluginStatus ( i , 'toggle_on' , plugin . name ) ;
111111 break ;
112112 }
113113 }
114114
115- for ( let i = 0 ; i < 10 ; i ++ ) {
115+ for ( let i = 1 ; i < 10 ; i ++ ) {
116116 const plugin = await pluginPage . getPluginRowObjByIndex ( i ) ;
117117 if ( plugin . name === 'Microting Backend Configuration Plugin' ) {
118118 await checkPluginStatus ( i , 'toggle_on' , plugin . name ) ;
0 commit comments