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
First test report allways like a slowly test
For example
You should really fix these slow tests (>80ms)...
Any ideas?
testCool()has only a simple assert :/I'm using v3.0.0