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 5b0aa7b commit 376097bCopy full SHA for 376097b
1 file changed
tests/TestCase.php
@@ -15,7 +15,6 @@ protected function resolveApplicationConfiguration($app)
15
{
16
parent::resolveApplicationConfiguration($app);
17
18
- // add typesense driver
19
$app['config']->set('statamic.search.drivers.typesense', [
20
'client' => [
21
'api_key' => env('TYPESENSE_API_KEY', 'xyz'),
@@ -40,7 +39,10 @@ protected function resolveApplicationConfiguration($app)
40
39
],
41
]);
42
43
- // add typesense index
+ $app['config']->set('statamic.search.indexes.cp', [
+ 'driver' => 'null',
44
+ ]);
45
+
46
$app['config']->set('statamic.search.indexes.typesense_index', [
47
'driver' => 'typesense',
48
'searchables' => ['collection:pages'],
0 commit comments