-
Notifications
You must be signed in to change notification settings - Fork 61
Open
Description
First test report allways like a slowly test
For example
class GeneralTest extends IlluminateTestCase
{
public function testCool(): void
{
$this->assertTrue(true);
}
public function testNotCool(): void
{
usleep(300000);
$this->assertTrue(true);
}
}
You should really fix these slow tests (>80ms)...
- 489ms to run Tests\GeneralTest:testCool
- 312ms to run Tests\GeneralTest:testNotCool
Any ideas? testCool() has only a simple assert :/
I'm using v3.0.0
Metadata
Metadata
Assignees
Labels
No labels