added it_get_setup_intent, it_upgrade_plan, it_cancel_subscription test

This commit is contained in:
Peter Papp
2021-03-04 12:48:51 +01:00
parent b1c15bb6a7
commit 69b72d24a9
15 changed files with 253 additions and 86 deletions

View File

@@ -2,10 +2,10 @@
namespace App\Console\Commands;
use App\Page;
use App\Models\Page;
use App\Services\SetupService;
use App\Setting;
use App\User;
use App\Models\Setting;
use App\Models\User;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Hash;
use Faker;
@@ -66,7 +66,6 @@ class SetupDevEnvironment extends Command
{
$user = User::forceCreate([
'role' => 'admin',
'name' => 'John Doe',
'email' => 'john@doe.com',
'password' => Hash::make('secret'),
]);