-
Notifications
You must be signed in to change notification settings - Fork 159
Closed
Description
Pint Version
1.21.0
PHP Version
8.4.4
Description
I've noticed that pint creates wrongly formatted output for the Pest test method get
. I suspect that this might be related to #352.
Below is a diff of a pint run of one of my tests:
test('a guest can view the homepage', function () {
- get('/')
- ->assertOk()
- ->assertViewIs('homepage');
-});
+get('/')
+->assertOk()
+->assertViewIs('homepage');
+ });
Steps To Reproduce
Create a Pest test and format it with pint.
Expected:
test('a guest can view the homepage', function () {
get('/')
->assertOk()
->assertViewIs('homepage');
});
Actual output:
test('a guest can view the homepage', function () {
get('/')
->assertOk()
->assertViewIs('homepage');
});
Metadata
Metadata
Assignees
Labels
No labels