© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•8mo ago•
13 replies
Matthew

Class "..." not found in tests

Im using Pest to do some testing, however, my classes cannot be found.
In: tests/ I have a test file, that includes the following code:
<?php

use TheThunderTurner\FilamentLatex\Database\Factories\FilamentLatexFactory;
use TheThunderTurner\FilamentLatex\Resources\FilamentLatexResource;

use function Pest\Livewire\livewire;


it('can render LaTeX List', function () {
    $record = FilamentLatexFactory::factory()->create();

    livewire(FilamentLatexResource\Pages\ViewFilamentLatex::class, ['record' => $record])->assertSuccessful();
});
<?php

use TheThunderTurner\FilamentLatex\Database\Factories\FilamentLatexFactory;
use TheThunderTurner\FilamentLatex\Resources\FilamentLatexResource;

use function Pest\Livewire\livewire;


it('can render LaTeX List', function () {
    $record = FilamentLatexFactory::factory()->create();

    livewire(FilamentLatexResource\Pages\ViewFilamentLatex::class, ['record' => $record])->assertSuccessful();
});

When running pest, I get the error
Class "TheThunderTurner\FilamentLatex\Database\Factories\FilamentLatexFactory" not found
Class "TheThunderTurner\FilamentLatex\Database\Factories\FilamentLatexFactory" not found
. Why is it not found? Because the test file doesnt have a namespace? What am I missing?
Thanks
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Tailwind class not found in plugin
FilamentFFilament / ❓┊help
15mo ago
Class "NumberFormatter" not found
FilamentFFilament / ❓┊help
2y ago
Class SpatieMediaLibraryFileUpload & SpatieMediaLibraryImageColumn not found
FilamentFFilament / ❓┊help
2y ago
Class "Filament\PanelProvider" not found
FilamentFFilament / ❓┊help
3y ago