[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

The space URI scheme moved from at:// to ats:// (Atmosphere Spaces) in the
spaces module. Update the assertion so the existing test passes against
current main without other changes.

Tom Scanlan (Apr 26, 2026, 3:29 PM EDT) 941bef5f 74336fd9

+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