fix(results): 🐛 Display results for blocks w/ multiple inputs
This commit is contained in:
23
apps/viewer/playwright/tests/hugeBlock.spec.ts
Normal file
23
apps/viewer/playwright/tests/hugeBlock.spec.ts
Normal file
@ -0,0 +1,23 @@
|
||||
import test, { expect } from '@playwright/test'
|
||||
import path from 'path'
|
||||
import { importTypebotInDatabase } from '../services/database'
|
||||
import { typebotViewer } from '../services/selectorUtils'
|
||||
import { generate } from 'short-uuid'
|
||||
|
||||
test('should work as expected', async ({ page }) => {
|
||||
const typebotId = generate()
|
||||
await importTypebotInDatabase(
|
||||
path.join(__dirname, '../fixtures/typebots/hugeBlock.json'),
|
||||
{ id: typebotId, publicId: `${typebotId}-public` }
|
||||
)
|
||||
await page.goto(`/${typebotId}-public`)
|
||||
await typebotViewer(page).locator('input').fill('Baptiste')
|
||||
await typebotViewer(page).locator('input').press('Enter')
|
||||
await typebotViewer(page).locator('input').fill('26')
|
||||
await typebotViewer(page).locator('input').press('Enter')
|
||||
await typebotViewer(page).locator('button >> text=Yes').click()
|
||||
await page.goto(`http://localhost:3000/typebots/${typebotId}/results`)
|
||||
await expect(page.locator('text=Baptiste')).toBeVisible()
|
||||
await expect(page.locator('text=26')).toBeVisible()
|
||||
await expect(page.locator('text=Yes')).toBeVisible()
|
||||
})
|
Reference in New Issue
Block a user