Skip to content

Commit fdd187f

Browse files
npm: bump @babel/eslint-parser from 7.28.4 to 7.28.5 (#5613)
* npm: bump @babel/eslint-parser from 7.28.4 to 7.28.5 Bumps [@babel/eslint-parser](https://github.com/babel/babel/tree/HEAD/eslint/babel-eslint-parser) from 7.28.4 to 7.28.5. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.28.5/eslint/babel-eslint-parser) --- updated-dependencies: - dependency-name: "@babel/eslint-parser" dependency-version: 7.28.5 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Add timeout for editall page --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jason Robbins <[email protected]>
1 parent c619d57 commit fdd187f

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
},
6464
"devDependencies": {
6565
"@babel/core": "^7.28.4",
66-
"@babel/eslint-parser": "^7.28.4",
66+
"@babel/eslint-parser": "^7.28.5",
6767
"@babel/eslint-plugin": "^7.27.1",
6868
"@babel/plugin-proposal-class-properties": "^7.18.6",
6969
"@babel/plugin-proposal-decorators": "^7.28.0",

packages/playwright/tests/chromedash-guide-editall-page_pwtest.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ import { captureConsoleMessages, delay, login, logout, createNewFeature } from '
1010
async function gotoEditAllPage(page) {
1111
const editButton = page.locator('a[href^="/guide/editall/"]');
1212
await editButton.click();
13-
await expect(page.locator('chromedash-form-table')).toBeVisible();
13+
await expect(page.locator('chromedash-form-table')).toBeVisible(
14+
{timeout: 30000});
1415
}
1516

1617

0 commit comments

Comments
 (0)