Skip to content

Commit

Permalink
test_filter_array_setup
Browse files Browse the repository at this point in the history
  • Loading branch information
lrljoe authored Nov 21, 2024
1 parent 93db2da commit e871239
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Unit/Traits/Visuals/ReorderingVisualsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public function test_sorting_pills_hide_on_reorder(): void
->assertSeeHtml('wire:key="table-sorting-pill-id"');
}

#[Depends('test_FilterArraySetup')]
#[Depends('test_filter_array_setup')]
public function test_sorting_is_disabled_on_reorder(array $filterDefaultArray): void
{
Livewire::test(PetsTable::class)
Expand Down Expand Up @@ -169,7 +169,7 @@ public function test_per_page_gets_set_on_reorder(): void
->assertSet('perPage', 10);
}

#[Depends('test_FilterArraySetup')]
#[Depends('test_filter_array_setup')]
public function test_search_hides_on_reorder(array $filterDefaultArray): void
{
Livewire::test(PetsTable::class)
Expand Down Expand Up @@ -267,7 +267,7 @@ public function test_bulk_actions_row_select_some_gets_hidden_on_reorder(): void
->assertDontSee('do you want to select all');
}

#[Depends('test_FilterArraySetup')]
#[Depends('test_filter_array_setup')]
public function test_filters_are_disabled_on_reorder(array $filterDefaultArray): void
{
$customisedFilterArray = $filterDefaultArray;
Expand All @@ -290,7 +290,7 @@ public function test_filters_are_disabled_on_reorder(array $filterDefaultArray):
->assertSeeHtml('Filters');
}

#[Depends('test_FilterArraySetup')]
#[Depends('test_filter_array_setup')]
public function test_filter_pills_hide_on_reorder(array $filterDefaultArray): void
{
$filterDefaultArray['breed'] = [1];
Expand Down

0 comments on commit e871239

Please sign in to comment.