This commit is contained in:
Luke Downing
2023-02-10 13:20:34 +00:00
committed by Nuno Maduro
parent 8d33c9dc89
commit c319a8e84c
2 changed files with 5 additions and 3 deletions

View File

@ -369,12 +369,14 @@ final class WrapperRunner implements RunnerInterface
{ {
$this->debug(sprintf('Found %d test file%s', count($suiteLoader->files), count($suiteLoader->files) === 1 ? '' : 's')); $this->debug(sprintf('Found %d test file%s', count($suiteLoader->files), count($suiteLoader->files) === 1 ? '' : 's'));
$tests = array_filter( $phpunitTests = array_filter(
$suiteLoader->files, $suiteLoader->files,
fn (string $filename): bool => ! str_ends_with($filename, "eval()'d code") fn (string $filename): bool => ! str_ends_with($filename, "eval()'d code")
); );
return [...$tests, ...TestSuite::getInstance()->tests->getFilenames()]; $pestTests = TestSuite::getInstance()->tests->getFilenames();
return [...$phpunitTests, ...$pestTests];
} }
private function debug(string $message): void private function debug(string $message): void

View File

@ -2,4 +2,4 @@
test('closure was bound to CustomTestCase', function () { test('closure was bound to CustomTestCase', function () {
$this->assertCustomInSubFolderTrue(); $this->assertCustomInSubFolderTrue();
}); })->only();