Skip to content

Commit

Permalink
test(ui_patterns_library): Test only to demonstrate failure
Browse files Browse the repository at this point in the history
  • Loading branch information
WidgetsBurritos committed Sep 25, 2020
1 parent cd03369 commit d239fa9
Showing 1 changed file with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

namespace Drupal\Tests\ui_patterns_library\FunctionalJavascript;

/**
* Test patterns overview page displays for non-default themes.
*
* @group ui_patterns_library
*/
class UiPatternsLibraryOverviewTest extends UiPatternsLibraryOverviewTest {

/**
* Default theme.
*
* @var string
*/
protected $defaultTheme = 'stark';

/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();

$active_theme = $this->container->get('theme.initialization')->initTheme('ui_patterns_library_theme_test');
$this->container->get('theme.manager')->setActiveTheme($active_theme);
}

}

0 comments on commit d239fa9

Please sign in to comment.