File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -96,23 +96,23 @@ public function test_cant_set_search_defer_with_other_search_modifiers(): void
9696 $ this ->basicTable ->setSearchDebounce (1000 );
9797 }
9898
99- /* public function test_can_set_search_lazy(): void
99+ public function test_can_set_search_lazy (): void
100100 {
101101 $ this ->assertFalse ($ this ->basicTable ->hasSearchLazy ());
102102
103103 $ this ->basicTable ->setSearchLazy ();
104104
105105 $ this ->assertTrue ($ this ->basicTable ->hasSearchLazy ());
106- $this->assertSame('.lazy', $this->basicTable->getSearchOptions());
107- }*/
106+ $ this ->assertSame ('.live. lazy ' , $ this ->basicTable ->getSearchOptions ());
107+ }
108108
109- /* public function test_cant_set_search_lazy_with_other_search_modifiers(): void
109+ public function test_cant_set_search_lazy_with_other_search_modifiers (): void
110110 {
111111 $ this ->expectException (DataTableConfigurationException::class);
112112
113113 $ this ->basicTable ->setSearchLazy ();
114114 $ this ->basicTable ->setSearchDebounce (1000 );
115- }*/
115+ }
116116
117117 public function test_can_set_search_live (): void
118118 {
Original file line number Diff line number Diff line change @@ -86,14 +86,14 @@ public function test_can_check_if_search_blur_is_set(): void
8686 $ this ->assertTrue ($ this ->basicTable ->hasSearchBlur ());
8787 }
8888
89- /* public function test_can_check_if_search_lazy_is_set(): void
89+ public function test_can_check_if_search_lazy_is_set (): void
9090 {
9191 $ this ->assertFalse ($ this ->basicTable ->hasSearchLazy ());
9292
9393 $ this ->basicTable ->setSearchLazy ();
9494
9595 $ this ->assertTrue ($ this ->basicTable ->hasSearchLazy ());
96- }*/
96+ }
9797
9898 public function test_can_check_if_search_throttle_is_set (): void
9999 {
You can’t perform that action at this time.
0 commit comments