Skip to content

Instantly share code, notes, and snippets.

@michaellouieloria
Created September 18, 2014 10:57
Show Gist options
  • Save michaellouieloria/0785f636985477c8da7e to your computer and use it in GitHub Desktop.
Save michaellouieloria/0785f636985477c8da7e to your computer and use it in GitHub Desktop.
Testing in Laravel which needs Sentry authentication
public function setUp()
{
parent::setUp();
$user = Sentry::getUserProvider()->findById(1);
Sentry::login($user);
}
public function tearDown()
{
Sentry::logout();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment