Merge pull request #475 from rahthakor/feature/ui-enhancements

feat(ui): refactor chat layout with sidebar, message grouping, and nav improvements
This commit is contained in:
Peter Steinberger
2026-01-09 18:54:44 +00:00
committed by GitHub
23 changed files with 2560 additions and 314 deletions

View File

@@ -1,4 +1,4 @@
import { beforeEach, describe, expect, it } from "vitest";
import { afterEach, beforeEach, describe, expect, it } from "vitest";
import { resetProcessRegistryForTests } from "./bash-process-registry.js";
import {
bashTool,
@@ -50,6 +50,16 @@ beforeEach(() => {
});
describe("bash tool backgrounding", () => {
const originalShell = process.env.SHELL;
beforeEach(() => {
if (!isWin) process.env.SHELL = "/bin/bash";
});
afterEach(() => {
if (!isWin) process.env.SHELL = originalShell;
});
it(
"backgrounds after yield and can be polled",
async () => {