The trait Zenstruck\Browser\Tests\KernelBrowserTests requires some properties which are not provided by Zenstruck\Browser\Tests\...lBrowserWebTestCaseTest: $preActionsCalled, $preAssertionsCalled
Loading history...
13
14
/**
15
* @test
16
*/
17
public function calling_browser_ensures_kernel_is_shutdown(): void
18
{
19
static::bootKernel();
20
21
$this->browser()
22
->visit('/page1')
23
->assertSuccessful()
24
;
25
}
26
27
/**
28
* @test
29
*/
30
public function can_use_native_web_test_case_assertions(): void