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 27b4c55 commit 11beb63Copy full SHA for 11beb63
tests/Feature/GrokServiceProviderTest.php
@@ -3,12 +3,15 @@
3
namespace Tests\Feature;
4
5
use Tests\TestCase;
6
-use GrokPHP\Client\Clients\GrokClient;
+use GrokPHP\Laravel\Services\GrokAI;
7
+use Illuminate\Support\Facades\App;
8
9
class GrokServiceProviderTest extends TestCase
10
{
- public function test_it_registers_the_GrokClient_in_the_service_container()
11
+ public function test_it_registers_GrokAI_in_the_service_container()
12
- // soon ...
13
+ $grokAI = App::make(GrokAI::class);
14
+
15
+ $this->assertInstanceOf(GrokAI::class, $grokAI);
16
}
17
0 commit comments