Skip to content

Commit babe124

Browse files
committed
Fix: testcase error
1 parent 1dc33cd commit babe124

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<?php
2+
3+
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Database\Schema\Blueprint;
5+
use Illuminate\Support\Facades\Schema;
6+
7+
return new class extends Migration
8+
{
9+
/**
10+
* Run the migrations.
11+
*/
12+
public function up(): void
13+
{
14+
Schema::create('jobs', function (Blueprint $table) {
15+
$table->id();
16+
$table->string('queue')->index();
17+
$table->longText('payload');
18+
$table->unsignedTinyInteger('attempts');
19+
$table->unsignedInteger('reserved_at')->nullable();
20+
$table->unsignedInteger('available_at');
21+
$table->unsignedInteger('created_at');
22+
});
23+
24+
Schema::create('job_batches', function (Blueprint $table) {
25+
$table->string('id')->primary();
26+
$table->string('name');
27+
$table->integer('total_jobs');
28+
$table->integer('pending_jobs');
29+
$table->integer('failed_jobs');
30+
$table->longText('failed_job_ids');
31+
$table->mediumText('options')->nullable();
32+
$table->integer('cancelled_at')->nullable();
33+
$table->integer('created_at');
34+
$table->integer('finished_at')->nullable();
35+
});
36+
37+
Schema::create('failed_jobs', function (Blueprint $table) {
38+
$table->id();
39+
$table->string('uuid')->unique();
40+
$table->text('connection');
41+
$table->text('queue');
42+
$table->longText('payload');
43+
$table->longText('exception');
44+
$table->timestamp('failed_at')->useCurrent();
45+
});
46+
}
47+
48+
/**
49+
* Reverse the migrations.
50+
*/
51+
public function down(): void
52+
{
53+
Schema::dropIfExists('jobs');
54+
Schema::dropIfExists('job_batches');
55+
Schema::dropIfExists('failed_jobs');
56+
}
57+
};

tests/src/TestCase.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
use Filament\Tables\TablesServiceProvider;
1414
use Filament\Widgets\WidgetsServiceProvider;
1515
use Illuminate\Database\Eloquent\Factories\Factory;
16+
use Khatabwedaa\BladeCssIcons\BladeCssIconsServiceProvider;
1617
use Livewire\LivewireServiceProvider;
1718
use Orchestra\Testbench\TestCase as Orchestra;
1819
use RyanChandler\BladeCaptureDirective\BladeCaptureDirectiveServiceProvider;
@@ -47,6 +48,8 @@ protected function getPackageProviders($app)
4748
BladeCaptureDirectiveServiceProvider::class,
4849
BladeHeroiconsServiceProvider::class,
4950
BladeIconsServiceProvider::class,
51+
BladeCssIconsServiceProvider::class,
52+
5053
FilamentServiceProvider::class,
5154
FormsServiceProvider::class,
5255
InfolistsServiceProvider::class,

0 commit comments

Comments
 (0)