We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab77700 commit df2e1f2Copy full SHA for df2e1f2
tests/Feature/GrokFacadeTest.php
@@ -2,16 +2,13 @@
2
3
namespace Tests\Feature;
4
5
+use GrokPHP\Laravel\Services\GrokAI;
6
use Tests\TestCase;
-use GrokPHP\Laravel\Facades\GrokAI;
7
-use GrokPHP\Client\Config\ChatOptions;
8
-use GrokPHP\Client\Enums\Model;
9
-use Illuminate\Support\Facades\Http;
10
11
class GrokFacadeTest extends TestCase
12
{
13
- public function test_it_sends_a_chat_request_and_receives_a_response()
+ public function test_facade_resolves_correctly()
14
15
- // soon ...
+ $this->assertInstanceOf(GrokAI::class, app('grok-ai'));
16
}
17
0 commit comments