PHP code example of julesgraus / livewire-view-assertions
1. Go to this page and download the library: Download julesgraus/livewire-view-assertions library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
julesgraus / livewire-view-assertions example snippets
//Other imports here
use JulesGraus\LivewireViewAssertions\Livewire
class TestableLivewireViewBindingsTest extends TestCase
{
public function test_asserts_all_properties_are_bound()
{
Livewire::test(SomeComponent::class)
->assertPropertyBound('foo')
->assertPropertyBound('bar', 2);
}
}