Skip to content

Commit 5fb6867

Browse files
Add tests for columns with descriptions and extra attributes
1 parent d4289a1 commit 5fb6867

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

resources/views/resources/pages/index/column-has-description-above.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
it('`:dataset` column has the correct description above', function (string $column, string $content): void {
1+
test('`:dataset` column has the correct description above', function (string $column, string $content): void {
22
$records = {{ $getResourceModel() }}::factory(10)->create();
33

44
$record = $records->first();

resources/views/resources/pages/index/column-has-description-below.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
it('`:dataset` column has the correct description below', function (string $column, string $content): void {
1+
test('`:dataset` column has the correct description below', function (string $column, string $content): void {
22
$records = {{ $getResourceModel() }}::factory(10)->create();
33

44
$record = $records->first();

resources/views/resources/pages/index/column-has-extra-attributes.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
it('`:dataset` column has the extra attributes', function (string $column, array $attributes): void {
1+
test('`:dataset` column has the extra attributes', function (string $column, array $attributes): void {
22
$record = {{ $getResourceModel() }}::factory()->create();
33

44
livewire({{ $getPageClass('index') }}::class)

0 commit comments

Comments
 (0)