diff --git a/nodejs/docs/release-notes.mdx b/nodejs/docs/release-notes.mdx index d7d7b74cd1..a9b2420150 100644 --- a/nodejs/docs/release-notes.mdx +++ b/nodejs/docs/release-notes.mdx @@ -109,6 +109,9 @@ After 3 years of being deprecated, we removed `page.accessibility` from our API. - Network requests issued by [Service Workers](./service-workers.mdx#network-events-and-routing) are now reported and can be routed through the [BrowserContext](./api/class-browsercontext.mdx), only in Chromium. You can opt out using the `PLAYWRIGHT_DISABLE_SERVICE_WORKER_NETWORK` environment variable. - Console messages from Service Workers are dispatched through [worker.on('console')](/api/class-worker.mdx#worker-event-console). You can opt out of this using the `PLAYWRIGHT_DISABLE_SERVICE_WORKER_CONSOLE` environment variable. +### Miscellaneous +- Playwright docker images switched from Node.js v22 to Node.js v24 LTS. + ### Browser Versions - Chromium 143.0.7499.4 - Mozilla Firefox 144.0.2 diff --git a/nodejs/docs/test-sharding.mdx b/nodejs/docs/test-sharding.mdx index 50922f265a..b84e736c6b 100644 --- a/nodejs/docs/test-sharding.mdx +++ b/nodejs/docs/test-sharding.mdx @@ -161,7 +161,7 @@ You can now see the reports have been merged and a combined HTML report is avail ## Merging reports from multiple environments -If you want to run the same tests in multiple environments, as opposed to shard your tests onto multiple machines, you need to differentiate these enviroments. +If you want to run the same tests in multiple environments, as opposed to shard your tests onto multiple machines, you need to differentiate these environments. In this case, it is useful to specify the [testConfig.tag](/api/class-testconfig.mdx#test-config-tag) property, to tag all tests with the environment name. This tag will be automatically picked up by the blob report and later on by the merge tool.