Add Android APK fleet nodes with Crucible UI integration and tests.
APK wrapper registers platform=android via AETHERFORGE_PLATFORM; fleet UI shows robot icons, Android Access Depth probes, and a shortened mining onion timeline.
This commit is contained in:
@@ -29,6 +29,15 @@ describe('forgeFormNormalize', () => {
|
||||
expect(deriveDeliverableType(baseForm())).toBe('single');
|
||||
});
|
||||
|
||||
it('apk mode forces android arm64 and clears fusion', () => {
|
||||
const out = normalizeForgeForm(baseForm({ apk_mode: true, fusion_enabled: true, target_os: 'windows' }));
|
||||
expect(out.apk_mode).toBe(true);
|
||||
expect(out.target_os).toBe('android');
|
||||
expect(out.target_arch).toBe('arm64');
|
||||
expect(out.fusion_enabled).toBe(false);
|
||||
expect(out.mining_disabled).toBe(true);
|
||||
});
|
||||
|
||||
it('spread kit forces universal and clears fusion', () => {
|
||||
const out = normalizeForgeForm(baseForm({ spread_kit: true, fusion_enabled: true, target_os: 'windows' }));
|
||||
expect(out.spread_kit).toBe(true);
|
||||
|
||||
Reference in New Issue
Block a user