mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-11-21 01:16:35 +08:00
37 lines
843 B
PHP
37 lines
843 B
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use Illuminate\Contracts\Console\Kernel;
|
|
use Illuminate\Foundation\Application;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
|
|
class TestCase extends \Illuminate\Foundation\Testing\TestCase
|
|
{
|
|
/**
|
|
* The base URL to use while testing the application.
|
|
*/
|
|
protected $baseUrl = 'http://localhost';
|
|
|
|
public function createApplication(): Application
|
|
{
|
|
$app = require __DIR__.'/../bootstrap/app.php';
|
|
|
|
$app->make(Kernel::class)->bootstrap();
|
|
|
|
Artisan::call('migrate:refresh');
|
|
|
|
if (!file_exists(storage_path('install.lock'))) {
|
|
file_put_contents(storage_path('install.lock'), '');
|
|
}
|
|
|
|
return $app;
|
|
}
|
|
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
$this->spy(\App\Services\Translations\JavaScript::class);
|
|
}
|
|
}
|