Skip to content
Snippets Groups Projects

#3043779 "Source path has to start with a slash" exception when hitting path...

Open #3043779 "Source path has to start with a slash" exception when hitting path...
2 files
+ 9
1
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -80,6 +80,12 @@ public function testBlockVisibility(): void {
// Confirm that an empty block is not displayed.
$this->assertSession()->pageTextNotContains('Powered by Drupal');
$this->assertSession()->responseNotContains('sidebar-first');
// Confirm that index.php followed by anything else does not cause an
// exception.
$this->drupalGet('/index.php' . $this->randomMachineName());
$this->assertSession()->statusCodeEquals(200);
$this->assertSession()->pageTextNotContains($title);
}
/**
Loading