File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 66it ('publishes assets after install ' , function () {
77 Artisan::call ('statamic:install ' );
88
9+ expect (file_exists (public_path ('vendor/livewire-forms/css/filepond.css ' )))->toBeTrue ();
10+ expect (file_exists (public_path ('vendor/livewire-forms/js/filepond.js ' )))->toBeTrue ();
11+ expect (file_exists (public_path ('vendor/livewire-forms/js/form.js ' )))->toBeTrue ();
12+ expect (file_exists (public_path ('vendor/livewire-forms/js/grecaptcha.js ' )))->toBeTrue ();
913 expect (file_exists (public_path ('vendor/livewire-forms/js/livewire-forms.js ' )))->toBeTrue ();
1014
15+ File::delete (public_path ('vendor/livewire-forms/css/filepond.css ' ));
16+ File::delete (public_path ('vendor/livewire-forms/js/filepond.js ' ));
17+ File::delete (public_path ('vendor/livewire-forms/js/form.js ' ));
18+ File::delete (public_path ('vendor/livewire-forms/js/grecaptcha.js ' ));
1119 File::delete (public_path ('vendor/livewire-forms/js/livewire-forms.js ' ));
1220});
You can’t perform that action at this time.
0 commit comments