feat: introduce UX Extension and Base Folder Strategy

This commit is contained in:
Keith Guerin
2026-03-20 14:57:56 -07:00
parent 8eb419a47a
commit f13cb832aa
575 changed files with 11311 additions and 19877 deletions
@@ -42,12 +42,13 @@ describe('ShortcutsHelp', () => {
value: platform.value,
});
const { lastFrame, unmount } = await renderWithProviders(
const { lastFrame, waitUntilReady, unmount } = renderWithProviders(
<ShortcutsHelp />,
{
width,
},
);
await waitUntilReady();
expect(lastFrame()).toContain('shell mode');
expect(lastFrame()).toMatchSnapshot();
unmount();
@@ -55,8 +56,8 @@ describe('ShortcutsHelp', () => {
);
it('always shows Tab focus UI shortcut', async () => {
const rendered = await renderWithProviders(<ShortcutsHelp />);
const rendered = renderWithProviders(<ShortcutsHelp />);
await rendered.waitUntilReady();
expect(rendered.lastFrame()).toContain('Tab focus UI');
rendered.unmount();
});