Skip to content

Commit

Permalink
Update TellerClientTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
levizoesch committed Oct 29, 2023
1 parent 8e56241 commit 3af3c2e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion tests/TellerClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,16 @@
class TellerClientTest extends BaseTest
{

/**
public function testConfigMatchesEnv()
{
$envToken = getenv('TELLER_TEST_TOKEN');
$confToken = config('teller.TEST_TOKEN');

$this->assertSame($envToken,$confToken);
}


/**
* @throws MissingAccessTokenException
*/
public function testListAccounts()
Expand Down

0 comments on commit 3af3c2e

Please sign in to comment.