5a569a9e4d
移动壳 HostBridge 版本改为从 Expo 配置读取 补充运行时版本解析测试和配置门禁 同步宿主壳方案文档与共享决策记录
15 lines
513 B
TypeScript
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');
|
|
});
|
|
});
|