Tests: drop change-detector component tests

This commit is contained in:
2026-06-25 01:08:56 +03:00
parent 2dce270ac7
commit c6ca988e40
7 changed files with 0 additions and 219 deletions
-5
View File
@@ -110,11 +110,6 @@ describe('LivePreview busy overlay', () => {
expect(overlay()).not.toBeNull();
});
test('overlay carries a visible label for sighted users', () => {
act(() => usePreviewStore.setState({ busy: true }));
expect(overlay()?.textContent).toMatch(/rendering/i);
});
test('the preview body carries aria-busy=true when busy', () => {
act(() => usePreviewStore.setState({ busy: true }));
// The body element has aria-busy when the store says busy.