We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84c7570 commit 2971317Copy full SHA for 2971317
tests/TestCase.php
@@ -15,7 +15,7 @@ abstract class TestCase extends Orchestra
15
protected function getPackageProviders($app)
16
{
17
return [
18
- ServiceProvider::class
+ ServiceProvider::class,
19
];
20
}
21
tests/Testing/AssertTest.php
@@ -419,8 +419,8 @@ public function it_can_use_arguments_instead_of_an_array_to_assert_that_it_is_mi
419
420
$this->makeMockRequest(
421
Inertia::render('foo', [
422
- 'baz' => 'foo',
423
- ])
+ 'baz' => 'foo',
+ ])
424
)->assertInertia(function (Assert $inertia) {
425
$inertia->has('baz')->missingAll('foo', 'bar');
426
});
0 commit comments