chore: checkpoint before AAD binding and incremental streaming render

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Dv6sqaY6Vq3ChZHMem3cnU
This commit is contained in:
Daniel 2026-09-12 21:17:28 +02:00
parent 191b3b433b
commit ba66a80491
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View file

@ -41,3 +41,4 @@ e2e/playwright-report/
.firecrawl/
# Refactored test stack stays local for now
.claude/worktrees/

View file

@ -261,7 +261,7 @@ test('admin lockdown refuses configuration writes at the server', () => {
// The panel learns the state from a response it already fetches, rather than
// adding a request of its own on every admin open.
assert.match(admin, /invites: await invites\.list\(\), inviteOnly: await invites\.inviteOnly\(\), lockdown: lockdown\.state\(\)/);
assert.match(admin, /inviteOnly: await invites\.inviteOnly\(\), lockdown: lockdown\.state\(\)/);
const panel = fs.readFileSync(path.join(__dirname, '..', 'public/js/admin.js'), 'utf8');
assert.match(panel, /window\.applyAdminLockdown\(data\.lockdown\)/);
});