00b41b6a29
移动端壳拆分为 host-bridge 与 shell 目录 桌面端 Tauri 拆分为 host_bridge 与 shell Rust 模块 更新三端桥接层结构门禁与配置检查 同步宿主壳方案文档和项目共享决策
15 lines
353 B
TypeScript
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',
|
|
]);
|
|
});
|
|
});
|