diff options
Diffstat (limited to 'tests/Feature')
-rw-r--r-- | tests/Feature/ManifestTest.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/Feature/ManifestTest.php b/tests/Feature/ManifestTest.php new file mode 100644 index 0000000..a9e1108 --- /dev/null +++ b/tests/Feature/ManifestTest.php @@ -0,0 +1,7 @@ +<?php + +use Lightscale\LaralightAssets\Manifest; + +it('instantiates', function() { + new Manifest('test.json', '/dist'); +})->throwsNoExceptions(); |