feat: adds pest function

This commit is contained in:
Nuno Maduro
2024-05-14 01:58:44 +01:00
parent 8169382362
commit c919bb5bc4
12 changed files with 293 additions and 14 deletions

View File

@ -0,0 +1,9 @@
<?php
use Pest\PendingCalls\UsesCall;
it('proxies to uses call', function () {
$in = pest()->in();
expect($in)->toBeInstanceOf(UsesCall::class);
});