import { describe, expect, test } from 'vitest'; import { MOBILE_SHELL_SAFE_AREA_EDGES } from './mobileShellSafeArea'; describe('mobile shell safe area', () => { test('protects the WebView from every device edge', () => { expect(MOBILE_SHELL_SAFE_AREA_EDGES).toEqual([ 'top', 'right', 'bottom', 'left', ]); }); });