File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
tests/regression/insights Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,6 @@ const pubSubPage = new PubSubPage();
11
11
export async function verifyMessageDisplayingInPubSub ( message : string , displayed : boolean ) : Promise < void > {
12
12
const messageByText = pubSubPage . pubSubPageContainer . find ( pubSubPage . cssSelectorMessage ) . withText ( message ) ;
13
13
displayed
14
- ? await t . expect ( await messageByText . exists ) . ok ( `"${ message } " Message is not displayed` , { timeout : 5000 } )
15
- : await t . expect ( await messageByText . exists ) . notOk ( `"${ message } " Message is still displayed` ) ;
14
+ ? await t . expect ( messageByText . exists ) . ok ( `"${ message } " Message is not displayed` , { timeout : 5000 } )
15
+ : await t . expect ( messageByText . exists ) . notOk ( `"${ message } " Message is still displayed` ) ;
16
16
}
Original file line number Diff line number Diff line change 104
104
// Verify that Insights panel can be displayed for WebStack app according to filters
105
105
await t . expect ( browserPage . InsightsPanel . insightsBtn . exists ) . ok ( 'Insights panel not displayed without analytics when its filter is off' ) ;
106
106
107
- // Verify that Insights panel displayed if user's controlNumber is out of range from config file
107
+ // Verify that Insights panel not displayed if user's controlNumber is out of range from config file
108
108
await updateControlNumber ( 30.1 ) ;
109
109
await t . expect ( browserPage . InsightsPanel . insightsBtn . exists ) . notOk ( 'Insights panel displayed for user with control number out of the config' ) ;
110
110
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ wait_for()
44
44
echoerr " $WAITFORIT_cmdname : $WAITFORIT_HOST :$WAITFORIT_PORT is available after $(( WAITFORIT_end_ts - WAITFORIT_start_ts)) seconds"
45
45
break
46
46
fi
47
- sleep 30
47
+ sleep 60
48
48
done
49
49
return $WAITFORIT_result
50
50
}
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ while [ $TIMEOUT -gt 0 ]; do
14
14
exit 0;
15
15
fi
16
16
17
- sleep 1
17
+ sleep 30
18
18
echo " Waiting... (left: $TIMEOUT )"
19
19
done
20
20
You can’t perform that action at this time.
0 commit comments