From 93c57b355822577ba9511a6900a44626c11afa64 Mon Sep 17 00:00:00 2001 From: Ilia Denisov Date: Tue, 23 Jun 2026 14:09:40 +0200 Subject: [PATCH] test(ui): TEMP-skip the iOS fullscreen unit test (requestFullscreen is a no-op for the owner test; restore with the iOS path) --- ui/src/lib/telegram.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/src/lib/telegram.test.ts b/ui/src/lib/telegram.test.ts index f6d70af..39023f1 100644 --- a/ui/src/lib/telegram.test.ts +++ b/ui/src/lib/telegram.test.ts @@ -60,7 +60,9 @@ const desktopPlatforms = ['tdesktop', 'macos', 'web', undefined]; describe('telegramRequestFullscreen', () => { afterEach(() => vi.unstubAllGlobals()); - it('goes immersive fullscreen on iOS', () => { + // TEMP: fullscreen is disabled on all platforms for an owner test (telegramRequestFullscreen is a + // no-op); restore this (toHaveBeenCalledOnce) and un-skip when the iOS path is restored. + it.skip('goes immersive fullscreen on iOS', () => { const { requestFullscreen } = stubClient('ios'); telegramRequestFullscreen(); expect(requestFullscreen).toHaveBeenCalledOnce();