Skip to content

Instantly share code, notes, and snippets.

@sohag-pro
Created December 22, 2022 08:21
Show Gist options
  • Save sohag-pro/66b21ed743b04b1f0380d1275576a924 to your computer and use it in GitHub Desktop.
Save sohag-pro/66b21ed743b04b1f0380d1275576a924 to your computer and use it in GitHub Desktop.
Laravel Testing Commands and Tips
# testing env
.env.testing
# In memory sqlite db
DB_CONNECTION=sqlite
DB_DATABASE=:memory: # in memory sqlite db
# Look for some text
$this->assertSee('text');
# Look for some text that should not be present
$this->assertDontSee('text');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment