Files
Genarrative/apps/mobile-shell/src/shell/runtime.test.ts
T
kdletters 5a569a9e4d 收口移动壳宿主版本来源
移动壳 HostBridge 版本改为从 Expo 配置读取

补充运行时版本解析测试和配置门禁

同步宿主壳方案文档与共享决策记录
2026-06-19 05:56:48 +08:00

15 lines
513 B
TypeScript

import { describe, expect, test } from 'vitest';
import { resolveMobileShellHostVersion } from './runtime';
describe('resolveMobileShellHostVersion', () => {
test('uses Expo runtime config version when available', () => {
expect(resolveMobileShellHostVersion('0.2.3')).toBe('0.2.3');
});
test('falls back when Expo runtime config version is unavailable', () => {
expect(resolveMobileShellHostVersion(null)).toBe('0.1.0');
expect(resolveMobileShellHostVersion(' ')).toBe('0.1.0');
});
});