mirror of
https://github.com/harivansh-afk/clanker-agent.git
synced 2026-04-15 11:02:17 +00:00
- Copy all pi-mono source into apps/companion-os/ - Update Dockerfile to COPY pre-built binary instead of downloading from GitHub Releases - Update deploy-staging.yml to build pi from source (bun compile) before Docker build - Add apps/companion-os/** to path triggers - No more cross-repo dispatch needed Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
60 lines
2.2 KiB
TypeScript
60 lines
2.2 KiB
TypeScript
import assert from "node:assert";
|
|
import { describe, it } from "node:test";
|
|
import { visibleWidth, wrapTextWithAnsi } from "../src/utils.js";
|
|
|
|
describe("regional indicator width regression", () => {
|
|
it("treats partial flag grapheme as full-width to avoid streaming render drift", () => {
|
|
// Repro context:
|
|
// During streaming, "🇨🇳" often appears as an intermediate "🇨" first.
|
|
// If "🇨" is measured as width 1 while terminal renders it as width 2,
|
|
// differential rendering can drift and leave stale characters on screen.
|
|
const partialFlag = "🇨";
|
|
const listLine = " - 🇨";
|
|
|
|
assert.strictEqual(visibleWidth(partialFlag), 2);
|
|
assert.strictEqual(visibleWidth(listLine), 10);
|
|
});
|
|
|
|
it("wraps intermediate partial-flag list line before overflow", () => {
|
|
// Width 9 cannot fit " - 🇨" if 🇨 is width 2 (8 + 2 = 10).
|
|
// This must wrap to avoid terminal auto-wrap mismatch.
|
|
const wrapped = wrapTextWithAnsi(" - 🇨", 9);
|
|
|
|
assert.strictEqual(wrapped.length, 2);
|
|
assert.strictEqual(visibleWidth(wrapped[0] || ""), 7);
|
|
assert.strictEqual(visibleWidth(wrapped[1] || ""), 2);
|
|
});
|
|
|
|
it("treats all regional-indicator singleton graphemes as width 2", () => {
|
|
for (let cp = 0x1f1e6; cp <= 0x1f1ff; cp++) {
|
|
const regionalIndicator = String.fromCodePoint(cp);
|
|
assert.strictEqual(
|
|
visibleWidth(regionalIndicator),
|
|
2,
|
|
`Expected ${regionalIndicator} (U+${cp.toString(16).toUpperCase()}) to be width 2`,
|
|
);
|
|
}
|
|
});
|
|
|
|
it("keeps full flag pairs at width 2", () => {
|
|
const samples = ["🇯🇵", "🇺🇸", "🇬🇧", "🇨🇳", "🇩🇪", "🇫🇷"];
|
|
for (const flag of samples) {
|
|
assert.strictEqual(
|
|
visibleWidth(flag),
|
|
2,
|
|
`Expected ${flag} to be width 2`,
|
|
);
|
|
}
|
|
});
|
|
|
|
it("keeps common streaming emoji intermediates at stable width", () => {
|
|
const samples = ["👍", "👍🏻", "✅", "⚡", "⚡️", "👨", "👨💻", "🏳️🌈"];
|
|
for (const sample of samples) {
|
|
assert.strictEqual(
|
|
visibleWidth(sample),
|
|
2,
|
|
`Expected ${sample} to be width 2`,
|
|
);
|
|
}
|
|
});
|
|
});
|