ADD - introduce advanced phone setup and reset flow

This commit is contained in:
smx.pusha
2026-08-14 14:35:27 +02:00
parent 5d494419da
commit e033271cb2
13 changed files with 2606 additions and 54 deletions
@@ -10,12 +10,15 @@ describe('browser development preview contract', () => {
"developmentParameters.has('lockScreenPreview')",
)
expect(source).toContain(
'isLocked.value = !isDevelopment || developmentLockScreenPreview',
': !isDevelopment || developmentLockScreenPreview',
)
expect(source).toContain("developmentParameters.has('setupPreview')")
})
it('loads authenticated app data without replacing direct app routes', () => {
expect(source).toContain("if (isLocked.value) void router.replace('/')")
expect(source).toContain(
"if (isLocked.value || setupRequired.value) void router.replace('/')",
)
expect(source).toContain('else loadUnlockedPhoneData()')
})
})