Polish off all our gross edges around frontend/backend Public name management

This commit is contained in:
Jack Kingsman
2026-03-15 18:20:43 -07:00
parent c76f230c9f
commit c809dad05d
46 changed files with 311 additions and 140 deletions
+3 -1
View File
@@ -1,10 +1,12 @@
import { test, expect } from '@playwright/test';
import { createChannel, deleteChannel, getChannels } from '../helpers/api';
const PUBLIC_CHANNEL_KEY = '8B3387E9C5CDEA6AC9E5EDBAA115CD72';
test.describe('Conversation deletion flow', () => {
test.beforeAll(async () => {
const channels = await getChannels();
if (!channels.some((c) => c.name === 'Public')) {
if (!channels.some((c) => c.key === PUBLIC_CHANNEL_KEY)) {
await createChannel('Public');
}
});