Files
Genarrative/apps/mobile-shell/src/shell/mobileShellSafeArea.test.ts
T
kdletters 00b41b6a29 统一宿主壳目录边界
移动端壳拆分为 host-bridge 与 shell 目录

桌面端 Tauri 拆分为 host_bridge 与 shell Rust 模块

更新三端桥接层结构门禁与配置检查

同步宿主壳方案文档和项目共享决策
2026-06-18 16:02:55 +08:00

15 lines
353 B
TypeScript

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',
]);
});
});