[READ-ONLY] Mirror of https://github.com/flo-bit/contrail. atproto backend in a bottle flo-bit.dev/contrail/
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: update spaces-auth e2e assertion for ats:// scheme

Florian's #20 (469bf65) renamed the space URI scheme from at:// to ats://
across the codebase but didn't update the regex in this assertion (added
in PR #18 after that rename was already in flight).

Verified: pnpm test:e2e in apps/contrail-e2e — 12/12 passing.

Tom Scanlan (Apr 25, 2026, 10:02 PM EDT) da9e4597 37c03e1a

+1 -1
+1 -1
apps/contrail-e2e/tests/spaces-auth.test.ts
··· 96 96 expect(res.status, `createSpace → ${res.status}: ${text}`).toBe(200); 97 97 98 98 const data = (await res.json()) as { space: { uri: string; ownerDid: string } }; 99 - expect(data.space.uri).toMatch(/^at:\/\//); 99 + expect(data.space.uri).toMatch(/^ats:\/\//); 100 100 expect(data.space.ownerDid).toBe(alice.did); 101 101 }); 102 102