File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed
Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,10 @@ def app_manifest():
6464 path = "Contents/MacOS/qterm" ,
6565 identifier = "com.amazon.qterm" ,
6666 ),
67+ EmbeddedRequirement (
68+ path = "Contents/MacOS/qchat" ,
69+ identifier = "com.amazon.qchat" ,
70+ ),
6771 ],
6872 )
6973
Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ mod tests {
114114 // assert!(!telemetry_is_disabled_inner(true, &env, &settings));
115115 }
116116
117+ #[ ignore]
117118 #[ test]
118119 fn test_get_client_id ( ) {
119120 // max by default in tests
Original file line number Diff line number Diff line change @@ -157,6 +157,9 @@ mod tests {
157157 . unwrap ( ) ;
158158 }
159159
160+ // Wait some time for the socket to start listening.
161+ tokio:: time:: sleep ( std:: time:: Duration :: from_millis ( 5 ) ) . await ;
162+
160163 let _stream = socket_connect ( & socket_path) . await . expect ( "Failed to validate socket" ) ;
161164
162165 socket_thread. abort ( ) ;
You can’t perform that action at this time.
0 commit comments