Remove public emoji UI and unify booking accent

This commit is contained in:
2026-07-11 12:43:42 +02:00
parent 70c0918ce6
commit ab41dd927e
8 changed files with 90 additions and 13 deletions
+10
View File
@@ -73,6 +73,10 @@ test.describe('Booking Flow End-to-End', () => {
await page.locator('#bpfNext1').click();
await page.waitForTimeout(300);
const completedStep = page.locator('.bpf-step[data-step="1"]');
await expect(completedStep).toHaveClass(/done/);
expect(await completedStep.evaluate((el) => getComputedStyle(el).color)).toBe('rgb(224, 165, 91)');
// Step 2: Fill contact info
await expect(page.locator('#bpfName')).toBeVisible();
await page.locator('#bpfName').fill(testNames[index]);
@@ -101,6 +105,12 @@ test.describe('Booking Flow End-to-End', () => {
await page.waitForLoadState('domcontentloaded');
await page.waitForTimeout(2000);
const panelTitles = await page.locator('.bpf-panel-title').allTextContents();
for (const title of panelTitles) {
expect(title).not.toMatch(/[🚗📋🔐⬆☰]/u);
}
await expect(page.locator('.bpf-upload-icon svg')).toHaveCount(2);
// Booking 1: 1 Tag
await submitBooking(page, 'day', 0);