From b5cc589d8d26588ea6f6508850a4323fd59576b9 Mon Sep 17 00:00:00 2001 From: Hansanto Date: Tue, 26 Mar 2024 11:21:17 +0100 Subject: [PATCH] revert(release-notes): Manual modification --- docs/src/release-notes-js.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/release-notes-js.md b/docs/src/release-notes-js.md index 6f43af2156..423dcc9b60 100644 --- a/docs/src/release-notes-js.md +++ b/docs/src/release-notes-js.md @@ -29,7 +29,7 @@ await page.getByRole('link', { name: 'Collection of blue and white' }).click(); await expect(page.getByRole('heading', { name: 'Light and easy' })).toBeVisible(); ``` -- `expect(callback).toPass()` timeout and intervals can now be configured by `expect.toPass.timeout` and `expect.toPass.intervals` options [globally](./api/class-testconfig#test-config-expect) or in [project config](./api/class-testproject#test-project-expect) +- `expect(callback).toPass()` timeout can now be configured by `expect.toPass.timeout` option [globally](./api/class-testconfig#test-config-expect) or in [project config](./api/class-testproject#test-project-expect) - [`event: ElectronApplication.console`] event is emitted when Electron main process calls console API methods. ```js