Skip to content

Commit c8a3d93

Browse files
Increase timeout
1 parent 2efc686 commit c8a3d93

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

specs/start-recording.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ 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)
4342
for (const cell of cells) {
4443
const text = await cell.getText()
4544
if (text.includes('quickpizza.grafana.com')) {
@@ -48,7 +47,7 @@ describe('Start recording', () => {
4847
}
4948
return false
5049
},
51-
{ timeout: 10000, timeoutMsg: 'No requests to quickpizza captured' }
50+
{ timeout: 60000, timeoutMsg: 'No requests to quickpizza captured', interval: 1000 }
5251
)
5352

5453
// Verify requests are being captured

0 commit comments

Comments
 (0)