From 2e2a9738c14260b048f4ea54b247401c1eace14a Mon Sep 17 00:00:00 2001 From: sonali-dudhia Date: Wed, 6 May 2026 10:44:56 +0530 Subject: [PATCH 1/3] Remove example of passing options to the click method in browser-testing.md --- browser-testing.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/browser-testing.md b/browser-testing.md index 7a72a47..1b09a0e 100644 --- a/browser-testing.md +++ b/browser-testing.md @@ -917,12 +917,6 @@ The `click` method clicks the link with the given text: $page->click('Login'); ``` -You may also pass options: - -```php -$page->click('#button', options: ['clickCount' => 2]); -``` - ### text From a591e6d1bd8c2670f7e52135af0b886c14930413 Mon Sep 17 00:00:00 2001 From: sonali-dudhia Date: Wed, 6 May 2026 10:46:57 +0530 Subject: [PATCH 2/3] Revert "Remove example of passing options to the click method in browser-testing.md" This reverts commit 2e2a9738c14260b048f4ea54b247401c1eace14a. --- browser-testing.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/browser-testing.md b/browser-testing.md index 1b09a0e..7a72a47 100644 --- a/browser-testing.md +++ b/browser-testing.md @@ -917,6 +917,12 @@ The `click` method clicks the link with the given text: $page->click('Login'); ``` +You may also pass options: + +```php +$page->click('#button', options: ['clickCount' => 2]); +``` + ### text From 9e189e65a522718104c2c76209781c2d46c9d4f7 Mon Sep 17 00:00:00 2001 From: sonali-dudhia Date: Wed, 17 Jun 2026 11:06:39 +0530 Subject: [PATCH 3/3] Add toBeUlid docs --- expectations.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/expectations.md b/expectations.md index 8a9d182..b35b036 100644 --- a/expectations.md +++ b/expectations.md @@ -107,6 +107,7 @@ With the Pest expectation API, you have access to an extensive collection of ind - [`toHaveSameSize()`](#expect-toHaveSameSize) - [`toBeUrl()`](#expect-toBeUrl) - [`toBeUuid()`](#expect-toBeUuid) +- [`toBeUlid()`](#expect-toBeUlid) @@ -839,6 +840,15 @@ This expectation ensures that `$value` is an UUID. expect('ca0a8228-cdf6-41db-b34b-c2f31485796c')->toBeUuid(); ``` + +### `toBeUlid()` + +This expectation ensures that `$value` is a ULID. + +```php +expect('01ARZ3NDEKTSV4RRFFQ69G5FAV')->toBeUlid(); +``` + ---