mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-12 20:20:41 -05:00
10 lines
202 B
PHP
10 lines
202 B
PHP
<?php
|
|
|
|
use function Pest\Stressless\stress;
|
|
|
|
it('homepage has a fast response time', function () {
|
|
$result = stress('/');
|
|
|
|
expect($result->requests()->duration()->med())->toBeLessThan(100);
|
|
});
|