summaryrefslogtreecommitdiff
path: root/tests/TestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/TestCase.php')
-rw-r--r--tests/TestCase.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/TestCase.php b/tests/TestCase.php
new file mode 100644
index 0000000..584d026
--- /dev/null
+++ b/tests/TestCase.php
@@ -0,0 +1,21 @@
+<?php
+
+namespace Lightscale\LaralightAssets\Tests;
+
+use Lightscale\LaralightAssets\AssetsServiceProvider;
+
+use Orchestra\Testbench\TestCase as Orchestra;
+use Orchestra\Testbench\Concerns\WithWorkbench;
+use function Orchestra\Testbench\workbench_path;
+
+class TestCase extends Orchestra
+{
+ use WithWorkbench;
+
+ protected function getPackageProviders($app)
+ {
+ return [
+ AssetsServiceProvider::class,
+ ];
+ }
+}