2
0

Regroup database queries of /sendMessage in one place

Potentially reduces the total queries to database and it will help to migrate to Edge runtime
This commit is contained in:
Baptiste Arnaud
2023-07-18 14:31:20 +02:00
parent 1095cf7f09
commit aa4c16dad7
32 changed files with 520 additions and 482 deletions

View File

@@ -27,6 +27,6 @@ test.describe.parallel('Templates page', () => {
await page.click('text=Customer Support')
await expect(page.locator('text=How can I help you?')).toBeVisible()
await page.click('text=Use this template')
await expect(page).toHaveURL(new RegExp(`/edit`), { timeout: 10000 })
await expect(page).toHaveURL(new RegExp(`/edit`), { timeout: 20000 })
})
})