New themes

This commit is contained in:
Jack Kingsman
2026-03-11 17:28:12 -07:00
parent 4e0b6a49b0
commit a06fefb34e
4 changed files with 207 additions and 2 deletions
+8
View File
@@ -297,6 +297,14 @@ describe('SettingsModal', () => {
expect(screen.getByText("Hi there! I'm using RemoteTerm.")).toBeInTheDocument();
});
it('lists the new Windows 95 and iPhone themes', () => {
renderModal();
openLocalSection();
expect(screen.getByText('Windows 95')).toBeInTheDocument();
expect(screen.getByText('iPhone')).toBeInTheDocument();
});
it('clears stale errors when switching external desktop sections', async () => {
const onSaveAppSettings = vi.fn(async () => {
throw new Error('Save failed');