Browse Source

feat: add test hint for grant moderator availability

master
Gabriel Imre 5 years ago
parent
commit
29366a0029
1 changed files with 4 additions and 6 deletions
  1. 4
    6
      react/features/base/testing/components/TestConnectionInfo.js

+ 4
- 6
react/features/base/testing/components/TestConnectionInfo.js View File

184
                 <TestHint
184
                 <TestHint
185
                     id = 'org.jitsi.meet.conference.joinedState'
185
                     id = 'org.jitsi.meet.conference.joinedState'
186
                     value = { this.props._conferenceJoinedState } />
186
                     value = { this.props._conferenceJoinedState } />
187
+                <TestHint
188
+                    id = 'org.jitsi.meet.conference.grantModeratorAvailable'
189
+                    value = { true } />
187
                 <TestHint
190
                 <TestHint
188
                     id = 'org.jitsi.meet.conference.localParticipantRole'
191
                     id = 'org.jitsi.meet.conference.localParticipantRole'
189
                     value = { this.props._localUserRole } />
192
                     value = { this.props._localUserRole } />
201
  *
204
  *
202
  * @param {Object} state - The Redux state.
205
  * @param {Object} state - The Redux state.
203
  * @private
206
  * @private
204
- * @returns {{
205
- *     _conferenceConnectionState: string,
206
- *     _conferenceJoinedState: string,
207
- *     _localUserId: string,
208
- *     _testMode: boolean
209
- * }}
207
+ * @returns {Props}
210
  */
208
  */
211
 function _mapStateToProps(state) {
209
 function _mapStateToProps(state) {
212
     const conferenceJoined
210
     const conferenceJoined

Loading…
Cancel
Save