diff options
Diffstat (limited to 'tests/Pest.php')
-rw-r--r-- | tests/Pest.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/Pest.php b/tests/Pest.php new file mode 100644 index 0000000..a761fb0 --- /dev/null +++ b/tests/Pest.php @@ -0,0 +1,17 @@ +<?php + +use Lightscale\LaralightAssets\Tests\TestCase; + +/* +|-------------------------------------------------------------------------- +| Test Case +|-------------------------------------------------------------------------- +| +| The closure you provide to your test functions is always bound to a specific PHPUnit test +| case class. By default, that class is "PHPUnit\Framework\TestCase". Of course, you may +| need to change it using the "pest()" function to bind a different classes or traits. +| +*/ + +pest()->extend(TestCase::class) + ->in('Feature'); |