Edit File: TodoTestCaseFilter.php
<?php declare(strict_types=1); namespace Pest\TestCaseMethodFilters; use Pest\Contracts\TestCaseMethodFilter; use Pest\Factories\TestCaseMethodFactory; final class TodoTestCaseFilter implements TestCaseMethodFilter { public function accept(TestCaseMethodFactory $factory): bool { return $factory->todo; } }
Back