fix(gstack2): harden integrated runtime verification

This commit is contained in:
Sinabina
2026-07-21 12:29:01 -07:00
parent 09492d34b4
commit 37144e8b05
24 changed files with 2032 additions and 3313 deletions
+3 -1
View File
@@ -45,7 +45,9 @@ describe('GStack 2 generated runtime payload prerequisites', () => {
expect(result.built).toBe(true);
expect(calls).toHaveLength(1);
expect(calls[0].map((entry) => entry.path)).toEqual(REQUIRED_RUNTIME_PAYLOADS.map((entry) => entry.path));
expect(new Set(calls[0].map((entry) => entry.build))).toEqual(new Set(['core']));
expect(new Set(calls[0].map((entry) => entry.build))).toEqual(
new Set(process.platform === 'darwin' ? ['core', 'ios'] : ['core']),
);
});
test('does not rebuild payloads that already exist', async () => {