mirror of
https://github.com/lllin000/PaperForge.git
synced 2026-07-22 17:00:23 +00:00
9 lines
318 B
JavaScript
9 lines
318 B
JavaScript
import { describe, expect, it } from 'vitest';
|
|
|
|
import { shouldRenderVectorReady } from '../src/testable.js';
|
|
|
|
describe('shouldRenderVectorReady', () => {
|
|
it('keeps vector advanced UI visible while build status text is temporarily null', () => {
|
|
expect(shouldRenderVectorReady(true, null)).toBe(true);
|
|
});
|
|
});
|