mirror of
https://github.com/lllin000/PaperForge.git
synced 2026-07-22 06:50:53 +00:00
9 lines
328 B
TypeScript
9 lines
328 B
TypeScript
import { describe, expect, it } from 'vitest';
|
|
|
|
import { shouldRenderVectorReady } from "../src/services/memory-state";
|
|
|
|
describe('shouldRenderVectorReady', () => {
|
|
it('keeps vector advanced UI visible while build status text is temporarily null', () => {
|
|
expect(shouldRenderVectorReady(true, null)).toBe(true);
|
|
});
|
|
});
|