You’re probably writing a Laravel test for a Livewire component.
The docs don’t seem to mention that you need to import a package at the top of your test file first, like this:
use Livewire\Livewire;
Now, you can use Livewire::test
because it’s been imported into the test.