Skip to content
Snippets Groups Projects

Issue #3257078: Drupal\Tests\maestro_webform\Functional\LoadTest::testLoad fails

Files
2
@@ -13,12 +13,20 @@ use Drupal\Tests\BrowserTestBase;
class LoadTest extends BrowserTestBase {
/**
* Modules to enable.
*
* @var array
* @inerhitDoc
*/
protected static $modules = ['maestro_webform'];
/**
* @inerhitDoc
*/
protected $defaultTheme = 'stark';
/**
* @inerhitDoc
*/
protected $strictConfigSchema = FALSE;
/**
* A user with permission to administer site configuration.
*
@@ -38,7 +46,7 @@ class LoadTest extends BrowserTestBase {
/**
* Tests that the home page loads with a 200 response.
*/
public function testLoad() {
public function testLoad(): void {
$this->drupalGet(Url::fromRoute('<front>'));
$this->assertSession()->statusCodeEquals(200);
}
Loading