Skip to content

Instantly share code, notes, and snippets.

@oliuz
Forked from JeffreyWay/ex.php
Created August 18, 2019 00:07
Show Gist options
  • Select an option

  • Save oliuz/ab2d9b4e9115023fe2de99558f61c7ff to your computer and use it in GitHub Desktop.

Select an option

Save oliuz/ab2d9b4e9115023fe2de99558f61c7ff to your computer and use it in GitHub Desktop.
Access Laravel from a test that uses the Integrated Selenium extension. https://github.com/laracasts/integrated
use Laracasts\Integrated\Extensions\Selenium;
use Laracasts\Integrated\Services\Laravel\Application as Laravel;
class AuthTest extends Selenium
{
use Laravel;
/**
* @tearDown
*/
function cleanDatabase()
{
DB::table('users')->truncate();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment