Skip to content

Commit 2efc686

Browse files
Increase timeout
1 parent bd55f9f commit 2efc686

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

specs/start-recording.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ describe('Start recording', () => {
3939
await browser.waitUntil(
4040
async () => {
4141
const cells = await browser.$$('table tbody tr td')
42+
console.log('cells', await cells.length)
4243
for (const cell of cells) {
4344
const text = await cell.getText()
4445
if (text.includes('quickpizza.grafana.com')) {
@@ -47,7 +48,7 @@ describe('Start recording', () => {
4748
}
4849
return false
4950
},
50-
{ timeout: 3000, timeoutMsg: 'No requests to quickpizza captured' }
51+
{ timeout: 10000, timeoutMsg: 'No requests to quickpizza captured' }
5152
)
5253

5354
// Verify requests are being captured

0 commit comments

Comments
 (0)