function HtmxRequestInfoTest::testIsHtmxRequest

Tests the isHtmxRequest method.

File

core/tests/Drupal/Tests/Core/Htmx/HtmxRequestInfoTest.php, line 38

Class

HtmxRequestInfoTest
Test all HtmxRequestInfoTrait methods.

Namespace

Drupal\Tests\Core\Htmx

Code

public function testIsHtmxRequest() : void {
  // Test with the header not present.
  $this->assertFalse($this->isHtmxRequest());
  // Test with the header present.
  $this->request->headers
    ->set('HX-Request', 'true');
  $this->assertTrue($this->isHtmxRequest());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.