mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-07 07:55:13 +02:00
Merge pull request #38 from Kaelio/replace-klo-ascii-with-ktx
fix(cli): replace KLO logo with KTX
This commit is contained in:
commit
d45c6346e0
2 changed files with 8 additions and 8 deletions
|
|
@ -316,12 +316,12 @@ function pad(str: string, width: number): string {
|
|||
}
|
||||
|
||||
const KTX_LOGO_SMALL = [
|
||||
'██╗ ██╗██╗ ██████╗ ',
|
||||
'██║ ██╔╝██║ ██╔═══██╗',
|
||||
'█████╔╝ ██║ ██║ ██║',
|
||||
'██╔═██╗ ██║ ██║ ██║',
|
||||
'██║ ██╗███████╗╚██████╔╝',
|
||||
'╚═╝ ╚═╝╚══════╝ ╚═════╝ ',
|
||||
'██╗ ██╗████████╗██╗ ██╗',
|
||||
'██║ ██╔╝╚══██╔══╝╚██╗██╔╝',
|
||||
'█████╔╝ ██║ ╚███╔╝ ',
|
||||
'██╔═██╗ ██║ ██╔██╗ ',
|
||||
'██║ ██╗ ██║ ██╔╝ ██╗',
|
||||
'╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝',
|
||||
] as const;
|
||||
|
||||
export function Logo(props: { theme: HudTheme; done: boolean }): ReactNode {
|
||||
|
|
|
|||
|
|
@ -105,7 +105,7 @@ describe('sanitizeMemoryFlowTuiError', () => {
|
|||
describe('MemoryFlowTuiApp', () => {
|
||||
it('always shows the KTX logo', () => {
|
||||
const { lastFrame } = renderInkTest(<MemoryFlowTuiApp input={replayInput()} terminalWidth={120} onExit={vi.fn()} showBoot={false} />);
|
||||
expect(lastFrame()).toContain('█████╔╝');
|
||||
expect(lastFrame()).toContain('╚███╔╝');
|
||||
});
|
||||
|
||||
it('shows persistent HUD with source and status terminology', () => {
|
||||
|
|
@ -229,7 +229,7 @@ describe('MemoryFlowTuiApp', () => {
|
|||
const frame = lastFrame() ?? '';
|
||||
expect(frame).toContain('Ingesting — 0/1 business area done');
|
||||
expect(frame).toContain('Reading table schemas, understanding relationships, creating query definitions');
|
||||
expect(frame).toContain('█████╔╝');
|
||||
expect(frame).toContain('╚███╔╝');
|
||||
});
|
||||
|
||||
it('describes multi-source ingestion as building the context layer', () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue