changes to sms packages and option to create user
This commit is contained in:
@@ -2,8 +2,6 @@
|
||||
|
||||
namespace Tests\Feature;
|
||||
|
||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
use Illuminate\Foundation\Testing\WithFaker;
|
||||
use Tests\TestCase;
|
||||
|
||||
class AlgoliaSearchTest extends TestCase
|
||||
@@ -13,16 +11,16 @@ class AlgoliaSearchTest extends TestCase
|
||||
*/
|
||||
public function test_example(): void
|
||||
{
|
||||
|
||||
$client = \Algolia\AlgoliaSearch\SearchClient::create('ZDAXR87LZV','8797318d18e10541ad15d49ae1e64db2');
|
||||
|
||||
$client = \Algolia\AlgoliaSearch\SearchClient::create('ZDAXR87LZV', '8797318d18e10541ad15d49ae1e64db2');
|
||||
|
||||
$index = $client->initIndex('myposts_index');
|
||||
|
||||
$index->saveObject([
|
||||
'objectID' => 1,
|
||||
'name' => 'Test record'
|
||||
'name' => 'Test record',
|
||||
]);
|
||||
|
||||
//$response->assertStatus(200);
|
||||
// $response->assertStatus(200);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user