We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a628d16 commit 6954b6aCopy full SHA for 6954b6a
tests/Views/Traits/Configuration/ColumnConfigurationTest.php
@@ -96,4 +96,16 @@ public function can_make_column_unclickable(): void
96
97
$this->assertFalse($column->isClickable());
98
}
99
+
100
+ /** @test */
101
+ public function can_deselect_column(): void
102
+ {
103
+ $column = Column::make('Name');
104
105
+ $this->assertTrue($column->isSelected());
106
107
+ $column->deselected();
108
109
+ $this->assertFalse($column->isSelected());
110
+ }
111
0 commit comments