Skip to content

Commit 0653b74

Browse files
author
Sergey Pashkevich
committed
some changes for tests
1 parent 9ab6b18 commit 0653b74

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

testbench.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
providers:
2+
- Pashkevich\Wallet\WalletServiceProvider

tests/TestCase.php

+13-5
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,23 @@
22

33
namespace Pashkevich\Wallet\Tests;
44

5-
use Pashkevich\Wallet\WalletServiceProvider;
5+
use Illuminate\Foundation\Application;
6+
use Illuminate\Contracts\Config\Repository;
7+
use Orchestra\Testbench\Concerns\WithWorkbench;
68
use Orchestra\Testbench\TestCase as OrchestraTestCase;
79

810
class TestCase extends OrchestraTestCase
911
{
10-
protected function getPackageProviders($app): array
12+
use WithWorkbench;
13+
14+
/**
15+
* @param Application $app
16+
*/
17+
protected function defineEnvironment($app): void
1118
{
12-
return [
13-
WalletServiceProvider::class,
14-
];
19+
/** @var Repository $config */
20+
$config = $app->make(Repository::class);
21+
22+
$config->set('wallet.google.application_credentials_path', '');
1523
}
1624
}

0 commit comments

Comments
 (0)