File tree 2 files changed +15
-5
lines changed
2 files changed +15
-5
lines changed Original file line number Diff line number Diff line change
1
+ providers :
2
+ - Pashkevich\Wallet\WalletServiceProvider
Original file line number Diff line number Diff line change 2
2
3
3
namespace Pashkevich \Wallet \Tests ;
4
4
5
- use Pashkevich \Wallet \WalletServiceProvider ;
5
+ use Illuminate \Foundation \Application ;
6
+ use Illuminate \Contracts \Config \Repository ;
7
+ use Orchestra \Testbench \Concerns \WithWorkbench ;
6
8
use Orchestra \Testbench \TestCase as OrchestraTestCase ;
7
9
8
10
class TestCase extends OrchestraTestCase
9
11
{
10
- protected function getPackageProviders ($ app ): array
12
+ use WithWorkbench;
13
+
14
+ /**
15
+ * @param Application $app
16
+ */
17
+ protected function defineEnvironment ($ app ): void
11
18
{
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 ' , '' );
15
23
}
16
24
}
You can’t perform that action at this time.
0 commit comments