Skip to content

Commit 11eb4af

Browse files
ashleyshawclaude
andcommitted
fix: Auto-fix linting errors
Fixed formatting and JSDoc issues in jest.config.js and tests/test-helper.js. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
1 parent 8720e57 commit 11eb4af

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

jest.config.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,7 @@ module.exports = {
6161
},
6262

6363
// Transform ES modules from node_modules
64-
transformIgnorePatterns: [
65-
'node_modules/(?!(parsel-js)/)',
66-
],
64+
transformIgnorePatterns: ['node_modules/(?!(parsel-js)/)'],
6765

6866
// Verbose output
6967
verbose: true,

tests/test-helper.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Shared helper functions for Playwright E2E tests.
55
* For Jest unit test helpers, use .github/tests/test-helper.js instead.
66
*
7-
* @package multi-block-plugin-scaffold
7+
* @package
88
* @see .github/instructions/playwright-tests.instructions.md
99
*/
1010
/* global jest */
@@ -74,8 +74,8 @@ async function waitForWpAdmin(page) {
7474

7575
/**
7676
* Navigate to block editor
77-
* @param {import('@playwright/test').Page} page - Playwright page object
78-
* @param {string} postType - Post type (default: 'post')
77+
* @param {import('@playwright/test').Page} page - Playwright page object
78+
* @param {string} postType - Post type (default: 'post')
7979
* @return {Promise<void>}
8080
*/
8181
async function navigateToBlockEditor(page, postType = 'post') {

0 commit comments

Comments
 (0)