Add initial test

This commit is contained in:
Oliver Davies 2023-12-25 22:02:10 +00:00
parent ebd4e202c2
commit 11391c2b86

View file

@ -0,0 +1,15 @@
<?php
namespace Drupal\Tests\example\Functional;
use Drupal\Tests\BrowserTestBase;
class ExampleTest extends BrowserTestBase {
protected $defaultTheme = 'stark';
public function testBasic(): void {
self::assertTrue(TRUE);
}
}