- Timestamp:
- 08/16/2026 08:24:05 PM (2 weeks ago)
- Location:
- trunk
- Files:
-
- 6 edited
-
.github/workflows/reusable-end-to-end-tests.yml (modified) (1 diff)
-
.github/workflows/reusable-performance-test-v2.yml (modified) (1 diff)
-
Gruntfile.js (modified) (3 diffs)
-
package-lock.json (modified) (2 diffs)
-
package.json (modified) (1 diff)
-
tests/qunit/playwright.config.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/reusable-end-to-end-tests.yml
r62742 r63309 101 101 - name: Install Playwright browsers 102 102 if: ${{ inputs.install-playwright }} 103 run: np xplaywright install --with-deps chromium103 run: npm exec --no -- playwright install --with-deps chromium 104 104 105 105 - name: Build WordPress -
trunk/.github/workflows/reusable-performance-test-v2.yml
r62742 r63309 149 149 150 150 - name: Install Playwright browsers 151 run: np xplaywright install --with-deps chromium151 run: npm exec --no -- playwright install --with-deps chromium 152 152 153 153 - name: Start Docker environment -
trunk/Gruntfile.js
r62741 r63309 2280 2280 var done = this.async(); 2281 2281 grunt.util.spawn( { 2282 cmd: 'np x',2283 args: [ ' playwright', 'test', '--config', 'tests/qunit/playwright.config.js' ],2282 cmd: 'npm', 2283 args: [ 'exec', '--no', '--', 'playwright', 'test', '--config', 'tests/qunit/playwright.config.js' ], 2284 2284 opts: { stdio: 'inherit' } 2285 2285 }, function( error, result, code ) { … … 2364 2364 const distTag = grunt.option('dist-tag') || 'latest'; 2365 2365 grunt.log.writeln( `Updating WordPress packages (--dist-tag=${distTag})` ); 2366 spawn( 'np x', ['wp-scripts', 'packages-update', `--dist-tag=${distTag}` ], {2366 spawn( 'npm', [ 'exec', '--no', '--', 'wp-scripts', 'packages-update', `--dist-tag=${distTag}` ], { 2367 2367 cwd: __dirname, 2368 2368 stdio: 'inherit', … … 2371 2371 2372 2372 grunt.registerTask( 'browserslist:update', 'Update the local database of browser supports', function() { 2373 grunt.log.writeln( `Updating browsers list`);2374 spawn( 'np x', [ 'update-browserslist-db@latest' ], {2373 grunt.log.writeln( 'Updating browsers list' ); 2374 spawn( 'npm', [ 'exec', '--no', '--', 'update-browserslist-db' ], { 2375 2375 cwd: __dirname, 2376 2376 stdio: 'inherit', -
trunk/package-lock.json
r63167 r63309 90 90 "source-map-loader": "5.0.0", 91 91 "typescript": "6.0.3", 92 "update-browserslist-db": "1.3.1", 92 93 "uuid": "14.0.1", 93 94 "wait-on": "9.0.10", … … 32267 32268 }, 32268 32269 "node_modules/update-browserslist-db": { 32269 "version": "1. 2.3",32270 "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1. 2.3.tgz",32271 "integrity": "sha512- Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",32270 "version": "1.3.1", 32271 "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.3.1.tgz", 32272 "integrity": "sha512-ZZ61DsRsOnakl74HAmp3oSN4aXUmEWXf+i/yv0h7tIBfICc3VdrFErQKUUKPgu3AMsTUMbcongALEN4l6GSUrQ==", 32272 32273 "dev": true, 32273 32274 "funding": [ -
trunk/package.json
r63167 r63309 78 78 "source-map-loader": "5.0.0", 79 79 "typescript": "6.0.3", 80 "update-browserslist-db": "1.3.1", 80 81 "uuid": "14.0.1", 81 82 "wait-on": "9.0.10", -
trunk/tests/qunit/playwright.config.js
r62411 r63309 13 13 use: { 14 14 headless: true, 15 /* Th is avoids the need to run `npx playwright install`in CI. */15 /* The system Chrome channel avoids a browser download in CI. */ 16 16 channel: process.env.CI ? 'chrome' : undefined, 17 17 },
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)