Skip to content

Commit 34a2d1f

Browse files
committed
More
1 parent 0e11b2c commit 34a2d1f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/public/runs/detail.test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ const banIconPath =
5656
const goToRunDetails = async (page, runNumber) => {
5757
await waitForNavigation(page, () => pressElement(page, '#run-overview'));
5858
await fillInput(page, '.run-numbers-filter', `${runNumber},${runNumber}`, ['change']);
59+
await waitForTableLength(page, 1);
5960
return waitForNavigation(page, () => pressElement(page, `#row${runNumber}-runNumber-text a`));
6061
};
6162

@@ -511,7 +512,7 @@ module.exports = () => {
511512
await page.waitForSelector('a.external-link:nth-of-type(3)', { hidden: true, timeout: 250 });
512513

513514
// Create running run
514-
await goToRunDetails(page, '1010');
515+
await goToRunDetails(page, 1010);
515516

516517
await expectUrlParams(page, { page: 'run-detail', runNumber: '1010' });
517518
await page.waitForSelector('.alert.alert-danger', { hidden: true, timeout: 300 });

0 commit comments

Comments
 (0)