Remove public emoji UI and unify booking accent
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user