Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/jetbrains-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ jobs:

# Run Qodana inspections
- name: Qodana - Code Inspection
uses: JetBrains/qodana-action@v2025.2.4
uses: JetBrains/qodana-action@v2025.3.1
with:
cache-default-branch-only: true

Expand Down
6 changes: 6 additions & 0 deletions extensions/cli/src/ui/__tests__/TUIChat.input.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,12 @@ describe("TUIChat - User Input Tests", () => {
stdin.write("!@#$%^&*()");
await waitForNextRender();

// Remote mode may need extra time for the input to be rendered
// especially on slower CI environments (macOS Node 18)
if (mode === "remote") {
await new Promise((resolve) => setTimeout(resolve, 500));
}

const frame = lastFrame();

// Should handle special characters without crashing
Expand Down
Loading