Gitter migration: Point people to app.gitter.im (rollout pt. 1)
[gitter.git] / public / js / vue / thread-message-feed / components / __snapshots__ / join-or-sign-in-button-test.js.snap
blobfc5025e9e1a58ee1905792e6936385d5a7162739
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
3 exports[`thread-message-feed join-or-sign-in-button shows sign in button for nli users 1`] = `
4 <footer
5   class="chat-input chat-input-nli"
7   <a
8     class="chat-input__btn"
9     target="_blank"
10   >
11     
12     Sign in to start talking
13   
14   </a>
15 </footer>
18 exports[`thread-message-feed join-or-sign-in-button user allowed to join room matches snapshot 1`] = `
19 <footer
20   class="chat-input chat-input-nli"
22   <div
23     class="join-button-container"
24   >
25     <button
26       class="chat-input__btn"
27     >
28       
29       Join room
30     
31     </button>
32      
33     <!---->
34      
35     <!---->
36   </div>
37 </footer>
40 exports[`thread-message-feed join-or-sign-in-button user allowed to join room matches snapshot when loading 1`] = `
41 <footer
42   class="chat-input chat-input-nli"
44   <div
45     class="join-button-container"
46   >
47     <button
48       class="chat-input__btn"
49     >
50       
51       Join room
52     
53     </button>
54      
55     <!---->
56      
57     <loading-spinner-stub
58       class="join-room-loading-icon"
59     />
60   </div>
61 </footer>
64 exports[`thread-message-feed join-or-sign-in-button user allowed to join room matches snapshot when request failed 1`] = `
65 <footer
66   class="chat-input chat-input-nli"
68   <div
69     class="join-button-container"
70   >
71     <button
72       class="chat-input__btn"
73     >
74       
75       Join room
76     
77     </button>
78      
79     <span
80       class="error-text error-box"
81     >
82       
83       Joining room failed: Internal Server Error
84     
85     </span>
86      
87     <!---->
88   </div>
89 </footer>
92 exports[`thread-message-feed join-or-sign-in-button user not allowed to join - matches snapshot 1`] = `
93 <footer
94   class="chat-input chat-input-nli"
96   <div
97     class="not-allowed-to-join"
98   >
99     
100     Only GitHub users can join this room.
101   
102   </div>
103 </footer>