summaryrefslogtreecommitdiff
path: root/tests/TestCase.php
diff options
context:
space:
mode:
authorSam Light <sam@lightscale.co.uk>2025-03-30 22:25:24 +0100
committerSam Light <samlight1994@gmail.com>2025-03-30 22:25:24 +0100
commitd80d1d27c3a5dcea6f341e0bc29653acfde6b5ea (patch)
tree38b3af07b54cb1c3f1c4b0fffef4c7bbb60181be /tests/TestCase.php
parent429901b5871707b5c3be911c67fb1a38df04ee30 (diff)
Setup some basic tests
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,
+ ];
+ }
+}