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 c612abd commit 6b712f3Copy full SHA for 6b712f3
tests/Integration/QueryDataTableTest.php
@@ -251,6 +251,22 @@ public function it_returns_search_panes_options()
251
$this->assertEquals(count($options['name']), 20);
252
}
253
254
+ /** @test */
255
+ public function it_performs_search_using_search_panes()
256
+ {
257
+ $crawler = $this->call('GET', '/query/search-panes', [
258
+ 'searchPanes' => [
259
+ 'id' => [1, 2],
260
+ ],
261
+ ]);
262
+
263
+ $crawler->assertJson([
264
+ 'draw' => 0,
265
+ 'recordsTotal' => 20,
266
+ 'recordsFiltered' => 2,
267
268
+ }
269
270
/** @test */
271
public function it_allows_column_search_added_column_with_custom_filter_handler()
272
{
0 commit comments