Help with failing test when using `searchTableColumns`

I'm hitting an error when using searchTableColumns in the below test assertions. If I use searchTable my test passes, but I was hoping to target the specific columns. My form schema contains a text input called email. I'm a little stumped by the error and why it's failing. Can anyone shine any light on this?

Livewire::test(ListCustomers::class)
    ->searchTableColumns(['email' => $email])
    ->assertCanSeeTableRecords($customers->where('email', $email))
    ->assertCanNotSeeTableRecords($customers->where('email', '<>', $email));
image.png
Was this page helpful?