Skip to content

Commit fd64158

Browse files
committed
Fix SUT tests
1 parent 2a77ef4 commit fd64158

File tree

5 files changed

+25
-0
lines changed

5 files changed

+25
-0
lines changed

templates/d8/test/browser.twig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ use Drupal\Tests\BrowserTestBase;
1111
*/
1212
class {{ class }} extends BrowserTestBase {
1313
14+
/**
15+
* {@inheritdoc}
16+
*/
17+
protected $defaultTheme = 'stable';
18+
1419
/**
1520
* {@inheritdoc}
1621
*/

templates/d8/test/webdriver.twig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ use Drupal\FunctionalJavascriptTests\WebDriverTestBase;
1111
*/
1212
class {{ class }} extends WebDriverTestBase {
1313
14+
/**
15+
* {@inheritdoc}
16+
*/
17+
protected $defaultTheme = 'stable';
18+
1419
/**
1520
* {@inheritdoc}
1621
*/

tests/dcg/Generator/Drupal_8/Test/_browser.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
*/
1212
class ExampleTest extends BrowserTestBase {
1313

14+
/**
15+
* {@inheritdoc}
16+
*/
17+
protected $defaultTheme = 'stable';
18+
1419
/**
1520
* {@inheritdoc}
1621
*/

tests/dcg/Generator/Drupal_8/Test/_webdriver.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
*/
1212
class ExampleTest extends WebDriverTestBase {
1313

14+
/**
15+
* {@inheritdoc}
16+
*/
17+
protected $defaultTheme = 'stable';
18+
1419
/**
1520
* {@inheritdoc}
1621
*/

tests/sut/zippo/tests/src/Functional/ThemeNegotiatorTest.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
*/
1212
class ThemeNegotiatorTest extends BrowserTestBase {
1313

14+
/**
15+
* {@inheritdoc}
16+
*/
17+
protected $defaultTheme = 'stark';
18+
1419
/**
1520
* {@inheritdoc}
1621
*/

0 commit comments

Comments
 (0)