Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions build-scripts/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ def app_manifest():
path="Contents/MacOS/qterm",
identifier="com.amazon.qterm",
),
EmbeddedRequirement(
path="Contents/MacOS/qchat",
identifier="com.amazon.qchat",
),
],
)

Expand Down
3 changes: 3 additions & 0 deletions crates/fig_ipc/src/unix_socket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,9 @@ mod tests {
.unwrap();
}

// Wait some time for the socket to start listening.
tokio::time::sleep(std::time::Duration::from_millis(5)).await;

let _stream = socket_connect(&socket_path).await.expect("Failed to validate socket");

socket_thread.abort();
Expand Down
Loading