Skip to content

Commit

Permalink
Fix Test
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpoulos committed May 23, 2021
1 parent f9ac340 commit 34c8ce1
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions tests/SvelteDirectTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,20 @@
namespace Nickpoulos\SvelteDirect\Tests;

use Illuminate\Filesystem\Filesystem;
use Nickpoulos\SvelteDirect\SvelteDirect;
use Nickpoulos\SvelteDirect\SvelteDirectServiceProvider;

class SvelteDirectTest extends TestCase
{
public SvelteDirect $svelteDirect;
/**
* @var SvelteDirectServiceProvider
*/
protected $svelteDirect;

public function setUp() : void
{
parent::setUp();

$this->svelteDirect = new SvelteDirect();
$this->svelteDirect = new SvelteDirectServiceProvider($this->app);
}

public function testLoadManifestFile()
Expand Down

0 comments on commit 34c8ce1

Please sign in to comment.